ios 修改textField的placeholder的字体颜色、大小的方法

使用的KVC的方法改变的textField的属性:

textField.placeholder=@"usernameisinhere!";

[textField setValue:[UIColorredColor] forKeyPath:@"_placeholderLabel.textColor"];

[textField setValue:[UIFontboldSystemFontOfSize:16] forKeyPath:@"_placeholderLabel.font"];

你可能感兴趣的:(ios 修改textField的placeholder的字体颜色、大小的方法)