Програмно змінити тип клавіатури UITextField


175

Чи можливо програмно змінити тип клавіатури uitextfield, щоб було можливо щось подібне:

if(user is prompted for numeric input only)
    [textField setKeyboardType: @"Number Pad"];

if(user is prompted for alphanumeric input)
    [textField setKeyboardType: @"Default"];

3
Я б запропонував вам змінити термін doozyна щось, що є більш зрозумілим .. майте на увазі, ТАК це міжнародний сайт, а не північноамериканський
абат

Відповіді:


371

Існує keyboardTypeвласність для UITextField:

typedef enum {
    UIKeyboardTypeDefault,                // Default type for the current input method.
    UIKeyboardTypeASCIICapable,           // Displays a keyboard which can enter ASCII characters, non-ASCII keyboards remain active
    UIKeyboardTypeNumbersAndPunctuation,  // Numbers and assorted punctuation.
    UIKeyboardTypeURL,                    // A type optimized for URL entry (shows . / .com prominently).
    UIKeyboardTypeNumberPad,              // A number pad (0-9). Suitable for PIN entry.
    UIKeyboardTypePhonePad,               // A phone pad (1-9, *, 0, #, with letters under the numbers).
    UIKeyboardTypeNamePhonePad,           // A type optimized for entering a person's name or phone number.
    UIKeyboardTypeEmailAddress,           // A type optimized for multiple email address entry (shows space @ . prominently).
    UIKeyboardTypeDecimalPad,             // A number pad including a decimal point
    UIKeyboardTypeTwitter,                // Optimized for entering Twitter messages (shows # and @)
    UIKeyboardTypeWebSearch,              // Optimized for URL and search term entry (shows space and .)

    UIKeyboardTypeAlphabet = UIKeyboardTypeASCIICapable, // Deprecated

} UIKeyboardType;

Ваш код повинен читати

if(user is prompted for numeric input only)
    [textField setKeyboardType:UIKeyboardTypeNumberPad];

if(user is prompted for alphanumeric input)
    [textField setKeyboardType:UIKeyboardTypeDefault];

7
Зауважте, що це не заважає розумному / зневіреному користувачеві вводити інші символи. Наприклад: Якщо клавіатура Emoji була активною, перш ніж вони натискали ваше числове поле, вони можуть вводити в неї смайлики. З цим нічого не можна зробити, і це, безумовно, помилка Apple, але ви повинні переконатися, що ваш код не збій, якщо ви отримаєте не цифри в полі числа.
Стівен Фішер

Дізнавшись сьогодні, це властивість UITextInputTraitsпротоколу, який UITextFieldприймає.
rounak

1
Чи можливо програмно змінити тип клавіатури як UIKeyboardTypeNumbersAndPunctuation для полів введення HTML, завантажених у веб-перегляд?
Шріні

Я створив uitextfield програмно в одному проекті з відповідним типом клавіатури. це прокинулося кілька днів тому. але зараз це не працює. Не отримуючи фактичної причини
Рахул

78

Варто зазначити, що якщо ви хочете, щоб в фокусованому на даний момент полі одразу оновити тип клавіатури, є ще один додатковий крок:

// textField is set to a UIKeyboardType other than UIKeyboardTypeEmailAddress

[textField setKeyboardType:UIKeyboardTypeEmailAddress];
[textField reloadInputViews];

Без виклику на reloadInputViewsклавіатуру клавіатура не зміниться, поки вибране поле ( перший відповідач ) не втратить і не відновить фокус.

Повний список UIKeyboardTypeзначень можна знайти тут , або:

typedef enum : NSInteger {
    UIKeyboardTypeDefault,
    UIKeyboardTypeASCIICapable,
    UIKeyboardTypeNumbersAndPunctuation,
    UIKeyboardTypeURL,
    UIKeyboardTypeNumberPad,
    UIKeyboardTypePhonePad,
    UIKeyboardTypeNamePhonePad,
    UIKeyboardTypeEmailAddress,
    UIKeyboardTypeDecimalPad,
    UIKeyboardTypeTwitter,
    UIKeyboardTypeWebSearch,
    UIKeyboardTypeAlphabet = UIKeyboardTypeASCIICapable
} UIKeyboardType;

Це корисна інформація, яку потрібно знати. Я б запропонував зробити запитання на відповідь у стилі Q & A, щоб отримати інформацію про поточну орієнтацію зміни введення поля (саме це я шукав, коли знайшов цю відповідь)
Stonz2,

1
Варто також зазначити, що виклик reloadInputViews на текстове поле, на який зараз НЕ зосереджено, не змінить тип клавіатури відразу. Тож краще зателефонуйте [текстове поле перетворіться вперше], а потім [текстове поле reloadInputViews]
Qiulang

1
Було, [textField reloadInputViews];що я пропав безвісти. Дякую!
Іслам Q.

1
Виклик reloadInputViewsтакож працює для індивідуальних UITextInputреалізацій.
Пол Гардінер


9
    textFieldView.keyboardType = UIKeyboardType.PhonePad

Це для швидкого. Також для того, щоб це функціонувало належним чином, його потрібно встановити післяtextFieldView.delegate = self


7

щоб змусити текстове поле приймати лише альфа-числове значення, встановивши це властивість

textField.keyboardType = UIKeyboardTypeNamePhonePad;

6
_textField .keyboardType = UIKeyboardTypeAlphabet;
_textField .keyboardType = UIKeyboardTypeASCIICapable;
_textField .keyboardType = UIKeyboardTypeDecimalPad;
_textField .keyboardType = UIKeyboardTypeDefault;
_textField .keyboardType = UIKeyboardTypeEmailAddress;
_textField .keyboardType = UIKeyboardTypeNamePhonePad;
_textField .keyboardType = UIKeyboardTypeNumberPad;
_textField .keyboardType = UIKeyboardTypeNumbersAndPunctuation;
_textField .keyboardType = UIKeyboardTypePhonePad;
_textField .keyboardType = UIKeyboardTypeTwitter;
_textField .keyboardType = UIKeyboardTypeURL;
_textField .keyboardType = UIKeyboardTypeWebSearch;

5

Швидкий 4

Якщо ви намагаєтесь змінити тип клавіатури, коли виконується умова, дотримуйтесь цього. Наприклад: Якщо ми хочемо змінити тип клавіатури з " Стандартний" на " Цифрова колодка", коли кількість текстового поля дорівнює 4 або 5, зробіть це:

textField.addTarget(self, action: #selector(handleTextChange), for: .editingChanged)

@objc func handleTextChange(_ textChange: UITextField) {
 if textField.text?.count == 4 || textField.text?.count == 5 {
   textField.keyboardType = .numberPad
   textField.reloadInputViews() // need to reload the input view for this to work
 } else {
   textField.keyboardType = .default
   textField.reloadInputViews()
 }

2

Для цього називається властивість keyboardType. Що ви хочете зробити, це замінити там, де у вас є рядки @"Number Padта @"Defaultз UIKeyboardTypeNumberPadіUIKeyboardTypeDefault .

Ваш новий код повинен виглядати приблизно так:

if(user is prompted for numeric input only)
    [textField setKeyboardType:UIKeyboardTypeNumberPad];

else if(user is prompted for alphanumeric input)
    [textField setKeyboardType:UIKeyboardTypeDefault];

Щасти!


1

для людей, які хочуть використовувати UIDatePickerяк вхід:

UIDatePicker *timePicker = [[UIDatePicker alloc] initWithFrame:CGRectMake(0, 250, 0, 0)];
[timePicker addTarget:self action:@selector(pickerChanged:)
     forControlEvents:UIControlEventValueChanged];
[_textField setInputView:timePicker];

// pickerChanged:
- (void)pickerChanged:(id)sender {
    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
    [formatter setDateFormat:@"d/M/Y"];
    _textField.text = [formatter stringFromDate:[sender date]];
}

1

Це UIKeyboardTypesдля Swift 3:

public enum UIKeyboardType : Int {

    case `default` // Default type for the current input method.
    case asciiCapable // Displays a keyboard which can enter ASCII characters
    case numbersAndPunctuation // Numbers and assorted punctuation.
    case URL // A type optimized for URL entry (shows . / .com prominently).
    case numberPad // A number pad with locale-appropriate digits (0-9, ۰-۹, ०-९, etc.). Suitable for PIN entry.
    case phonePad // A phone pad (1-9, *, 0, #, with letters under the numbers).
    case namePhonePad // A type optimized for entering a person's name or phone number.
    case emailAddress // A type optimized for multiple email address entry (shows space @ . prominently).

    @available(iOS 4.1, *)
    case decimalPad // A number pad with a decimal point.

    @available(iOS 5.0, *)
    case twitter // A type optimized for twitter text entry (easy access to @ #)

    @available(iOS 7.0, *)
    case webSearch // A default keyboard type with URL-oriented addition (shows space . prominently).

    @available(iOS 10.0, *)
    case asciiCapableNumberPad // A number pad (0-9) that will always be ASCII digits.


    public static var alphabet: UIKeyboardType { get } // Deprecated
}

Це приклад використання типу клавіатури зі списку:

textField.keyboardType = .numberPad

0

Програмно змінити тип клавіатури UITextField swift 3.0

lazy var textFieldTF: UITextField = {

    let textField = UITextField()
    textField.placeholder = "Name"
    textField.frame = CGRect(x:38, y: 100, width: 244, height: 30)
    textField.textAlignment = .center
    textField.borderStyle = UITextBorderStyle.roundedRect
    textField.keyboardType = UIKeyboardType.default //keyboard type
    textField.delegate = self
    return textField 
}() 
override func viewDidLoad() {
    super.viewDidLoad()
    view.addSubview(textFieldTF)
}

0

Ось тип клавіатури у Swift 4.2

// UIKeyboardType
//
// Requests that a particular keyboard type be displayed when a text widget
// becomes first responder. 
// Note: Some keyboard/input methods types may not support every variant. 
// In such cases, the input method will make a best effort to find a close 
// match to the requested type (e.g. displaying UIKeyboardTypeNumbersAndPunctuation 
// type if UIKeyboardTypeNumberPad is not supported).
//
public enum UIKeyboardType : Int {


    case `default` // Default type for the current input method.

    case asciiCapable // Displays a keyboard which can enter ASCII characters

    case numbersAndPunctuation // Numbers and assorted punctuation.

    case URL // A type optimized for URL entry (shows . / .com prominently).

    case numberPad // A number pad with locale-appropriate digits (0-9, ۰-۹, ०-९, etc.). Suitable for PIN entry.

    case phonePad // A phone pad (1-9, *, 0, #, with letters under the numbers).

    case namePhonePad // A type optimized for entering a person's name or phone number.

    case emailAddress // A type optimized for multiple email address entry (shows space @ . prominently).

    @available(iOS 4.1, *)
    case decimalPad // A number pad with a decimal point.

    @available(iOS 5.0, *)
    case twitter // A type optimized for twitter text entry (easy access to @ #)

    @available(iOS 7.0, *)
    case webSearch // A default keyboard type with URL-oriented addition (shows space . prominently).

    @available(iOS 10.0, *)
    case asciiCapableNumberPad // A number pad (0-9) that will always be ASCII digits.


    public static var alphabet: UIKeyboardType { get } // Deprecated
}
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.