码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 设置UITextField的placeholder属性的颜色

时间:2015-12-09 19:34:10      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

NSDictionary *attrDict = @{NSForegroundColorAttributeName : [UIColor redColor]};
    
    NSAttributedString *attrStr = [[NSAttributedString alloc] initWithString:textF.placeholder attributes:attrDict];
    
    [textF setAttributedPlaceholder:attrStr];

 http://www.jianshu.com/p/e5c6c9b455dd

iOS 设置UITextField的placeholder属性的颜色

标签:

原文地址:http://www.cnblogs.com/fs-ios/p/5033726.html

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