Bladeren bron

VLCNetworkLoginDataSourceLogin: Disable autocorrection for all fields

Edgar Fouillet 5 jaren geleden
bovenliggende
commit
27e0a86f2a
1 gewijzigde bestanden met toevoegingen van 1 en 0 verwijderingen
  1. 1 0
      Sources/LocalNetworkConnectivity/VLCNetworkLoginDataSourceLogin.m

+ 1 - 0
Sources/LocalNetworkConnectivity/VLCNetworkLoginDataSourceLogin.m

@@ -106,6 +106,7 @@ typedef NS_ENUM(NSUInteger, VLCNetworkServerLoginIndex) {
 
     fieldCell.placeholderString = labelString;
     UITextField *textField = fieldCell.textField;
+    textField.autocorrectionType = UITextAutocorrectionTypeNo;
     textField.autocapitalizationType = autocapitalizationType;
     textField.text              = valueString;
     textField.keyboardType      = keyboardType;