Disable autocapitalization

This commit is contained in:
Theodore Dubois 2017-12-01 11:36:23 -08:00
parent bcf07e218d
commit 39355184d1

View File

@ -77,6 +77,9 @@
- (UITextSmartInsertDeleteType)smartInsertDeleteType API_AVAILABLE(ios(11)) {
return UITextSmartInsertDeleteTypeNo;
}
- (UITextAutocapitalizationType)autocapitalizationType {
return UITextAutocapitalizationTypeNone;
}
/*
This code is the hacks that will be needed to remap caps lock to control. They're commented out for now.