Does anyone know how to disable autocorrect programming in uitextview? I have the following code, but it doesn\'t work.
- (void)_setUpTextView { self.textVie
Whoa there buddy, you commented out your own answer. Make this change:
self.textView.autocorrectionType = UITextAutocorrectionTypeNo;
And you should be good to go. autoCorrectionType does not take a boolean as an argument.
autoCorrectionType