Reputation: 2020
I don't want spell checking in search bar.
The documentation about it is very simply, but use:
searchBar.spellCheckingType = UITextSpellCheckingTypeNo;
not working under iOS 5 and 7; the spell-check still exist. What's solution of this problem?
Upvotes: 1
Views: 505
Reputation: 4380
Try this
[searchBar setAutocorrectionType:UITextAutocorrectionTypeNo];
Upvotes: 3