I have a case where autocorrection NEVER makes any sense. It's incredibly annoying. Can I disable it for the UITextField?
With Interface Builder you can disable "Correction" in the "Attributes" Tab in Inspector.
Programmaticaly you can use
UITextField* textfield = [[UITextField alloc] init];
textfield.autocorrectionType = UITextAutocorrectionTypeNo;
精彩评论