IOS UITextField. placeholder属性这个提示符的大小和颜色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS UITextField. placeholder属性这个提示符的大小和颜色相关的知识,希望对你有一定的参考价值。
用UITextField都知道,默认有个提示,原理是kvc,监听,
textField.placeholder = @"This is textField.placeholder";
[textField setValue:[UIColor green] forKeyPath:@"_placeholderLabel.textColor"];
[textField setValue:[UIFont boldSystemFontOfSize:15] forKeyPath:@"_placeholderLabel.font"];
本文出自 “雪花飞落满人间” 博客,请务必保留此出处http://smengxiang.blog.51cto.com/11204872/1860694
以上是关于IOS UITextField. placeholder属性这个提示符的大小和颜色的主要内容,如果未能解决你的问题,请参考以下文章