Procházet zdrojové kódy

disable return key if no text is input

Jonas Reinsch před 7 roky
rodič
revize
ff28c53fe5
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      deltachat-ios/CredentialsController.swift

+ 2 - 0
deltachat-ios/CredentialsController.swift

@@ -31,6 +31,8 @@ class TextFieldCell:UITableViewCell {
         textField.placeholder = placeholder
         
         selectionStyle = .none
+        
+        textField.enablesReturnKeyAutomatically = true
     }