标签:
修改UITextField的Placeholder字体颜色有一下两张方式可以达到效果。
第一种:
UIColor *color = [UIColor whiteColor]; textfield.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"用户名" attributes:@{NSForegroundColorAttributeName: color}];
第二种:
[textfield setValue:[UIColor whiteColor] forKeyPath:@"_placeholderLabel.textColor"];
iOS修改UITextField的Placeholder字体颜色
标签:
原文地址:http://www.cnblogs.com/FranZhou/p/5127742.html