美文网首页iOS假装进步
关闭 textField、textView 的键盘联想和拼写检查

关闭 textField、textView 的键盘联想和拼写检查

作者: 黑暗森林的歌者 | 来源:发表于2017-03-27 16:10 被阅读721次

    码上行动

    self.textField.autocorrectionType = UITextAutocorrectionTypeNo; // 关闭键盘联想
    self.textField.spellCheckingType = UITextSpellCheckingTypeNo;// 禁用拼写检查
    
    

    对应的设置选项:

    typedef NS_ENUM(NSInteger, UITextAutocorrectionType) {
        UITextAutocorrectionTypeDefault, //默认
        UITextAutocorrectionTypeNo, //不自动纠错
        UITextAutocorrectionTypeYes, //自动纠错
    };
    
    typedef NS_ENUM(NSInteger, UITextSpellCheckingType) {
        UITextSpellCheckingTypeDefault, // 默认
        UITextSpellCheckingTypeNo, // 禁用联想
        UITextSpellCheckingTypeYes, // 使用联想
    } NS_ENUM_AVAILABLE_IOS(5_0);
    

    相关文章

      网友评论

        本文标题:关闭 textField、textView 的键盘联想和拼写检查

        本文链接:https://www.haomeiwen.com/subject/jeurottx.html