like @cocoakomali , you can create a UITextField category to disable autocorrect for all UITextField in the default application
@implementation UITextField (DisableAutoCorrect) - (instancetype)init { self = [super init]; if (self) { [self setAutocorrectionType:UITextAutocorrectionTypeNo]; } return self; } @end
source share