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 aeca3dce41
commit 2bba983f1d

View File

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