Disable autocorrect on iOS for issue #1473

This commit is contained in:
Jonny Paton 2018-08-23 20:00:44 +01:00 committed by Lukas Dürrenberger
parent 9f7d8101a9
commit d8952f28eb

View File

@ -202,5 +202,11 @@
return self;
}
////////////////////////////////////////////////////////////
- (UITextAutocorrectionType) autocorrectionType
{
return UITextAutocorrectionTypeNo;
}
@end