瀏覽代碼

disable return key if no text is input

Jonas Reinsch 7 年之前
父節點
當前提交
ff28c53fe5
共有 1 個文件被更改,包括 2 次插入0 次删除
  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
     }