TextField


本篇文章为关于TextField的使用,不定时更新

内容有:修改placeholder颜色

1. 修改placeholder颜色

方法1.

[TF setValue:[UIColor cyanColor] forKeyPath:@"_placeholderLabel.textColor"];

方法2.

TF.attributedPlaceholder=[[NSAttributedString alloc]initWithString:@"修改placeholder字体颜色" attributes:@{NSForegroundColorAttributeName:[UIColor redColor]}];

你可能感兴趣的:(TextField)