使用kvc的方式对placeholder的颜色和字体大小进行修改
textField.placeholder = @"请输入验证码";
[textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"];
[textField setValue:[UIFont boldSystemFontOfSize:16] forKeyPath:@"_placeholderLabel.font"];
使用kvc的方式对placeholder的颜色和字体大小进行修改
textField.placeholder = @"请输入验证码";
[textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"];
[textField setValue:[UIFont boldSystemFontOfSize:16] forKeyPath:@"_placeholderLabel.font"];