有時,UITextField自帶的占位文字的顏色太淺或者不滿足需求,所以需要修改,而UITextField沒有直接的屬性去修改占位文字的顏色,所以只能通過其他間接方式去修改。
例如:系統默認的占位文字顏色太淺
需要加深顏色,或者改變顏色
示例:
核心代碼
方法一:通過attributedPlaceholder屬性修改占位文字顏色
CGFloat viewWidth = self.view.bounds.size.width; CGFloat textFieldX = 50; CGFloat textFieldH = 30; CGFloat padding = 30; UITextField *textField = [[UITextField alloc] init]; textField.frame = CGRectMake(textFieldX, 100, viewWidth - 2 * textFieldX, textFieldH); textField.borderStyle = UITextBorderStyleRoundedRect; // 邊框類型 textField.font = [UIFont systemFontOfSize:14]; NSAttributedString *attrString = [[NSAttributedString alloc] initWithString:@"請輸入占位文字" attributes: @{NSForegroundColorAttributeName:[UIColor redColor], NSFontAttributeName:textField.font }]; textField.attributedPlaceholder = attrString; [self.view addSubview:textField];
方法二:通過KVC修改占位文字顏色
UITextField *textField1 = [[UITextField alloc] init]; textField1.frame = CGRectMake(textFieldX, CGRectGetMaxY(textField.frame) + padding, viewWidth - 2 * textFieldX, textFieldH); textField1.borderStyle = UITextBorderStyleRoundedRect; textField1.placeholder = @"請輸入占位文字"; textField1.font = [UIFont systemFontOfSize:14]; // "通過KVC修改占位文字的顏色" [textField1 setValue:[UIColor greenColor] forKeyPath:@"_placeholderLabel.textColor"]; [self.view addSubview:textField1];
方法三:通過重寫UITextField的drawPlaceholderInRect:方法修改占位文字顏色
1、自定義一個TextField繼承自UITextField
2、重寫drawPlaceholderInRect:方法
3、在drawPlaceholderInRect方法中設置placeholder的屬性
// 重寫此方法 -(void)drawPlaceholderInRect:(CGRect)rect { // 計算占位文字的 Size CGSize placeholderSize = [self.placeholder sizeWithAttributes: @{NSFontAttributeName : self.font}]; [self.placeholder drawInRect:CGRectMake(0, (rect.size.height - placeholderSize.height)/2, rect.size.width, rect.size.height) withAttributes: @{NSForegroundColorAttributeName : [UIColor blueColor], NSFontAttributeName : self.font}]; }
總結:
1、當我們使用純代碼創建UITextField時,用第二種方法(KVC)修改占位文字顏色是最便捷的
2、當我們使用XIB或者Storyboard創建UITextField時,通過自定義UITextField,修改占位文字顏色是最適合的。
3、我們也可以在第三種重寫方法中,通過結合第二種方法中的KVC修改屬性來實現
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持本站。