参考资料
TextField控件详解:(http://www.cnblogs.com/rayray/p/4221666.html)
TextView控件详解:(http://blog.sina.com.cn/s/blog_9693f61a0101aode.html)
在ios9使用中的问题及解决
UITextView
关闭键盘
“UITextView”用来显示多行文本,”UITextField”只能显示单行文本。编辑完之后记得把键盘关闭,方法在资料中有,常用方法代码如下:
- (IBAction)didEndOnExit:(id)sender { [sender resignFirstResponder]; }
“didEndOnExit:”方法与”UITextField”的”Sent Events”中的”Did End On Exit”关联即可。
Detection 检查属性
“Detection”有”Links”,”Addresses”,”Phone Numbers”,”Events” 四种检查,可以多选,点击这四种类型的文本可直接进行操作,就是当检测到有网络地址时可以自动生成链接等。
“UITextView”的”Editable”属性是”YES”时,”Detection”的所有属性都不可用。
UITextField
“UITextField”自定义”Placeholder”的颜色,代码如下:
[self.passwordTextField setValue:UIColorFromRGB(0x979797) forKeyPath:@"_placeholderLabel.textColor"];
持续更新