标签:
一、键盘风格
UIKit框架支持8种风格键盘。
用法用例:
textView.keyboardtype = UIKeyboardTypeNumberPad;
二、键盘外观
用法用例:
textView.keyboardAppearance=UIKeyboardAppearanceDefault;
三、回车键
用法用例:
textView.returnKeyType=UIReturnKeyGo;
四、自动大写
用法用例:
textField.autocapitalizationType = UITextAutocapitalizationTypeWords;
五、自动更正
用法用例:
textField.autocorrectionType = UITextAutocorrectionTypeYes;
六、安全文本输入
textView.secureTextEntry=YES;
开启安全输入主要是用于密码或一些私人数据的输入,此时会禁用自动更正和自此缓存。
七、键盘遮住视图
这个问题又来已久,我专门写了篇文章来解决此问题,请笑纳:《 打开键盘遮住View的问题解决方法》
UIKeyboardTypeAlphabet
UIKeyboardTypeASCIICapable
UIKeyboardTypeDecimalPad
UIKeyboardTypeDefault
UIKeyboardTypeEmailAddress
UIKeyboardTypeNamePhonePad
UIKeyboardTypeNumberPad
UIKeyboardTypeNumbersAndPunctuation
UIKeyboardTypePhonePad
UIKeyboardTypeTwitter
UIKeyboardTypeURL
标签:
原文地址:http://www.cnblogs.com/lee4519/p/4185334.html