设置textField.placeholder的颜色

用KVC的方法

textField.placeholder = @"客户信息";  
[textField setValue:[UIColor blackColor] forKeyPath:@"_placeholderLabel.textColor"];  
[textField setValue:[UIFont boldSystemFontOfSize:16] forKeyPath:@"_placeholderLabel.font"];

你可能感兴趣的:(设置textField.placeholder的颜色)