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

如何更改UITextField 的placeholder 的字体颜色

时间:2016-04-08 14:29:09      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

storyboard 中这样设置
技术分享

具体步骤:

1.在User Defined Runtime Attributes中添加一个Key。

2.输入Key Path(这里我们输入_placeholderLabel.textColor)。

3.选择Type,有很多种(这里我们选择Color)

 
4.设置Value(这里出现的是颜色的选择面板,选择想要的颜色即可)。
 
 
纯代码的话这样子就 OK 啦
//textField的placeholder的背景色更改第一种颜色
    _userNameTxf.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"用户名" attributes:@{NSForegroundColorAttributeName: [UIColor whiteColor]}];
    //第二种方法
    [_userNameTxf setValue:[UIColor whiteColor] forKeyPath:@"_placeholderLabel..textColor"];

如何更改UITextField 的placeholder 的字体颜色

标签:

原文地址:http://www.cnblogs.com/sandyzhang/p/5367705.html

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