views:

15

answers:

1

I have a case where autocorrection NEVER makes any sense. It's incredibly annoying. Can I disable it for the UITextField?

+2  A: 

With Interface Builder you can disable "Correction" in the "Attributes" Tab in Inspector.

Correction

Programmaticaly you can use

UITextField* textfield = [[UITextField alloc] init];
textfield.autocorrectionType = UITextAutocorrectionTypeNo;
audience