iPhone Programming: Deactivate spell check in UITextView

后端 未结 4 1204
野趣味
野趣味 2020-12-17 20:48

UITextAutocorrectionTypeNo didn\'t work for me.

I\'m working on a crossword app for the iPhone. The questions are in UITextViews and I use UITextFields for the User-

4条回答
  •  无人及你
    2020-12-17 21:19

    I had the same problem. The solution is very simple but not documented: You can only change the properties defined in the UITextInputTraits protocol while the UITextView in question is NOT the first responder. The following lines fixed it for me:

    [self.textView resignFirstResponder];
    self.textView.autocorrectionType = UITextAutocorrectionTypeNo;
    [self.textView becomeFirstResponder];
    

    Hope this helps somebody.

提交回复
热议问题