Disable UITextField Predictive Text

后端 未结 6 1514
庸人自扰
庸人自扰 2020-12-08 06:06

With the release of iOS 8 I would like to disable the predictive text section of the keyboard when I begin typing in a UITextField. Not sure how this is done, any help would

6条回答
  •  离开以前
    2020-12-08 06:41

    Setting the autoCorrectionType to UITextAutocorrectionTypeNo did the trick

    Objective-C

    textField.autocorrectionType = UITextAutocorrectionTypeYes;
    textField.autocorrectionType = UITextAutocorrectionTypeNo;
    

    Swift 2

    textField.autocorrectionType = .Yes
    textField.autocorrectionType = .No
    

    Swift 3

    textField.autocorrectionType = .yes
    textField.autocorrectionType = .no
    

提交回复
热议问题