轉(zhuǎn)自:http://blog.csdn.net/mazy_ma/article/details/51775670
有時(shí)猿妈,UITextField自帶的Placeholder的顏色太淺或者不滿足需求,所以需要修改,而UITextField沒有直接的屬性去修改Placeholder的顏色,所以只能通過其他間接方式去修改允坚。
例如:系統(tǒng)默認(rèn)的Placeholder顏色太淺?
需要加深顏色霎箍,或者改變顏色?
方法一:通過attributedPlaceholder屬性修改Placeholder顏色
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];
? ? // 就下面這兩行是重點(diǎn)? ? NSAttributedString *attrString = [[NSAttributedString alloc] initWithString:@"請(qǐng)輸入占位文字" attributes:
? ? @{NSForegroundColorAttributeName:[UIColor redColor],
? ? ? ? ? ? ? ? NSFontAttributeName:textField.font? ? ? ? }];
? ? textField.attributedPlaceholder = attrString;
? ? [self.view addSubview:textField];
方法二:通過KVC修改Placeholder顏色
UITextField *textField1 = [[UITextField alloc] init];
?textField1.frame = CGRectMake(textFieldX, CGRectGetMaxY(textField.frame) + padding, viewWidth - 2 * textFieldX, textFieldH);?
?textField1.borderStyle = UITextBorderStyleRoundedRect; textField1.placeholder = @"請(qǐng)輸入占位文字";?
?textField1.font = [UIFont systemFontOfSize:14];?
?// "通過KVC修改占位文字的顏色"
?[textField1 setValue:[UIColor greenColor] forKeyPath:@"_placeholderLabel.textColor"];
?[self.view addSubview:textField1];
方法三:通過重寫UITextField的drawPlaceholderInRect:方法修改Placeholder顏色
1祈匙、自定義一個(gè)TextField繼承自UITextField??
2吐限、重寫drawPlaceholderInRect:方法??
3鲜侥、在drawPlaceholderInRect方法中設(shè)置placeholder的屬性
// 重寫此方法
-(void)drawPlaceholderInRect:(CGRect)rect {
? ? // 計(jì)算占位文字的 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}];
}
總結(jié):??
1、當(dāng)我們使用純代碼創(chuàng)建UITextField時(shí)诸典,用第二種方法(KVC)修改占位文字顏色是最便捷的 描函。?
2、當(dāng)我們使用XIB或者Storyboard創(chuàng)建UITextField時(shí)狐粱,通過自定義UITextField舀寓,修改占位文字顏色是最適合的。??
3肌蜻、我們也可以在第三種重寫方法中互墓,通過結(jié)合第二種方法中的KVC修改屬性來實(shí)現(xiàn)。