プログラムで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
私はあなたが用語を変更することをお勧めしたいdoozySO北米1国際サイトではなく..ですより一般的に理解しやすい何かに心に留めておく
abbood

回答:


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
これは、賢いユーザーや他のユーザーが他の文字を入力することを妨げるものではないことに注意してください。例:数字フィールドをタップするに絵文字キーボードがアクティブだった場合、絵文字を自由に入力できます。これについてあなたができることは何もありません。それは間違いなくAppleのバグですが、数値フィールドに非数値が表示されてもコードがクラッシュしないことを確認する必要があります。
スティーブンフィッシャー

今日発見された、これは採用するUITextInputTraitsプロトコルの特性ですUITextField
rounak 2014

1
Webviewに読み込まれたHTML入力フィールドに対して、プログラムでキーボードタイプをUIKeyboardTypeNumbersAndPunctuationに変更することは可能ですか?
Srini、2015年

uitextfieldを1つのプロジェクトでプログラム的に作成し、それぞれのキーボードタイプを使用しています。これは数日前に起こされました。しかし今、これは機能しません。実際の理由が得られない
Rahul Phate

78

現在フォーカスされているフィールドでキーボードタイプをすぐに更新したい場合は、もう1つの手順があります。

// 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を呼び出しても、キーボードタイプがすぐに変更されないことにも言及する価値があります。したがって、[textfieldがFirstResponder]を最初に呼び出してから、[textField reloadInputViews]を呼び出す方がよい
Qiulang

1
それは[textField reloadInputViews];私が行方不明だったということでした。ありがとう!
イスラムQ.15年

1
呼び出しreloadInputViewsは、別注のUITextInput実装でも機能します。
Paul Gardiner


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してUIKeyboardTypeNumberPadUIKeyboardTypeDefault

新しいコードは次のようになります。

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

これはUIKeyboardTypesSwift 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
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.