macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

UIKeyboardType

キーボードのタイプ

typedef enum {
UIKeyboardTypeDefault,
UIKeyboardTypeASCIICapable,
UIKeyboardTypeNumbersAndPunctuation,
UIKeyboardTypeURL,
UIKeyboardTypeNumberPad,
UIKeyboardTypePhonePad,
UIKeyboardTypeNamePhonePad,
UIKeyboardTypeEmailAddress,
UIKeyboardTypeAlphabet = UIKeyboardTypeASCIICapable
} UIKeyboardType;

解説

UIKeyboardTypeDefault
UIKeyboardTypeASCIICapable ASCIIキーボード
UIKeyboardTypeNumbersAndPunctuation 数字と記号
UIKeyboardTypeURL URL入力
UIKeyboardTypeNumberPad 数字
UIKeyboardTypePhonePad 電話
UIKeyboardTypeNamePhonePad
UIKeyboardTypeEmailAddress
UIKeyboardTypeAlphabet = UIKeyboardTypeASCIICapable

クラス

UITextInputTraits

Instance Methods

使用可能

iPhone2.0

参照

例文