修改UITextField中的placeholder的字体

修改字体颜色:

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

修改字体大小:

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

你可能感兴趣的:(修改UITextField中的placeholder的字体)