feat: set server picker search text field keyboard type to URL

This commit is contained in:
CMK 2021-06-08 17:05:20 +08:00
parent 5983455849
commit c4e38e76ee
1 changed files with 1 additions and 0 deletions

View File

@ -53,6 +53,7 @@ class PickServerSearchCell: UITableViewCell {
textField.autocapitalizationType = .none
textField.autocorrectionType = .no
textField.returnKeyType = .done
textField.keyboardType = .URL
return textField
}()