theWalker
theWalker

Reputation: 2020

UISearchBar spell checking

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

Answers (1)

ldindu
ldindu

Reputation: 4380

Try this

[searchBar setAutocorrectionType:UITextAutocorrectionTypeNo];

Upvotes: 3

Related Questions