Is there a way to disable useless and annoying pop up text tips in UITextField
and UISearchBar
like this on the screen?.
How can I do this?
I couldn't find any property responsible for this.
Is there a way to disable useless and annoying pop up text tips in UITextField
and UISearchBar
like this on the screen?.
How can I do this?
I couldn't find any property responsible for this.
If you have created your view in Interface Builder, click on the text field, and then from the Attributes inspector (4th icon of 6), set Correction to No. This seems to work for me.
I believe you need to set the autocorrectiontype for the text field:
So to switch it off I would use something along the lines of:
myTextField.autocorrectionType = UITextAutocorrectionTypeNo;
You can set the setAutoCorrectionType:
property of UITextField
to UITextAutoCorrectionTypeNo
[yourField setAutoCorrectionType:UITextAutoCorrectionTypeNo];