码迷,mamicode.com
首页 > 其他好文 > 详细

改变UITextField的Placeholder颜色

时间:2015-09-18 15:11:06      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

通过 attributedPlaceholder 属性来改变

if([textField respondsToSelector:@selector(setAttributedPlaceholder:)]
{
UIColor*color =[UIColor blackColor];
textField.attributedPlaceholder =[[NSAttributedString alloc] initWithString:placeholderText attributes:@{NSForegroundColorAttributeName: color}];
}else{
NSLog(@"Cannot set placeholder text‘s color, because deployment target is earlier than iOS 6.0");
// TODO: Add fall-back code to set placeholder color.
}

 

原文:http://www.cnblogs.com/kingW/p/3730206.html

改变UITextField的Placeholder颜色

标签:

原文地址:http://www.cnblogs.com/benbenzhu/p/4819158.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!