此文章为转载,原文地址:
https://www.jianshu.com/p/e1b6f6ab7292
self.textField.autocorrectionType =UITextAutocorrectionTypeNo;// 关闭键盘联想self.textField.spellCheckingType =UITextSpellCheckingTypeNo;// 禁用拼写检查
对应的设置选项:
typedefNS_ENUM(NSInteger,UITextAutocorrectionType) {UITextAutocorrectionTypeDefault,//默认UITextAutocorrectionTypeNo,//不自动纠错UITextAutocorrectionTypeYes,//自动纠错};
typedefNS_ENUM(NSInteger,UITextSpellCheckingType) {UITextSpellCheckingTypeDefault,// 默认UITextSpellCheckingTypeNo,// 禁用联想UITextSpellCheckingTypeYes,// 使用联想}NS_ENUM_AVAILABLE_IOS(5_0);
网友评论