views:

56

answers:

1

Hi All,

Please help me turning the spelling suggestion in the uitextview when the user inputs some text. can this feature be turned off?

A: 

Yes, in Interface builder you can turn off autocorrect, or do so in code by changing the autocorrect property.

lucius
txtSearch.autocorrectionType = UITextAutocorrectionTypeNo;It worked well, thanks a lot for your kindness Lucius.
Futur