I have approximately 200 textfields within my app and going through interface builder and changing this feature would take me forever! Is there a quicker way, perhaps in the appdelegate or something?
I have approximately 200 textfields within my app and going through interface builder and
Share
Do not try this without version control
200 nibs – mehh… you could try the following:
Create a subclass of
UITextField. at some point in the source, disable autocorrect at some point in its implementation.then replace the
UITextFieldinstances in your nibs with your subclass usingibtoolexample:
it’s certainly not pretty, but it’s the least tedious (read: least error prone) approach i can think of — for a reasonably quick solution.