修改TextField的placeholder的字体颜色
2015-11-01 本文已影响0人
Eafy
[self.testTextField setValue : [UIColor redColor] forKeyPath : @"placeholderLabel.textColor"];
需要注意的是:这里的方法是setValue:forKeyPath:,千万不要手滑打成setValue:forKey:;
placeholder的其他属性也可以通过这个方法修改。
[self.testTextField setValue : [UIColor redColor] forKeyPath : @"placeholderLabel.textColor"];
需要注意的是:这里的方法是setValue:forKeyPath:,千万不要手滑打成setValue:forKey:;
placeholder的其他属性也可以通过这个方法修改。