iOS开发者日记

KeyboardType对应表

2017-05-17  本文已影响1488人  DeadRabbit

整理下方便以后查阅~

UIKeyboardTypeDefault


UIKeyboardTypeDefault //Default type for the current input method.

UIKeyboardTypeDefault

UIKeyboardTypeASCIICapable


UIKeyboardTypeASCIICapable, // Displays a keyboard which can enter ASCII characters

UIKeyboardTypeASCIICapable

UIKeyboardTypeNumbersAndPunctuation


UIKeyboardTypeNumbersAndPunctuation, // Numbers and assorted punctuation.

UIKeyboardTypeNumbersAndPunctuation

UIKeyboardTypeURL


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

UIKeyboardTypeURL

UIKeyboardTypeNumberPad


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

UIKeyboardTypeNumberPad

UIKeyboardTypePhonePad


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

UIKeyboardTypePhonePad

UIKeyboardTypeNamePhonePad


UIKeyboardTypeNamePhonePad, // A type optimized for entering a person's name or phone number.

UIKeyboardTypeNamePhonePad

UIKeyboardTypeEmailAddress


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

UIKeyboardTypeEmailAddress

UIKeyboardTypeDecimalPad


UIKeyboardTypeDecimalPad NS_ENUM_AVAILABLE_IOS(4_1), // A number pad with a decimal point.

UIKeyboardTypeDecimalPad

UIKeyboardTypeTwitter


UIKeyboardTypeTwitter NS_ENUM_AVAILABLE_IOS(5_0), // A type optimized for twitter text entry (easy access to @ #)


UIKeyboardTypeTwitter

UIKeyboardTypeWebSearch


UIKeyboardTypeWebSearch NS_ENUM_AVAILABLE_IOS(7_0), // A default keyboard type with URL-oriented addition (shows space . prominently).

UIKeyboardTypeWebSearch

UIKeyboardTypeASCIICapableNumberPad


UIKeyboardTypeASCIICapableNumberPad NS_ENUM_AVAILABLE_IOS(10_0), // A number pad (0-9) that will always be ASCII digits.

UIKeyboardTypeASCIICapableNumberPad

UIKeyboardTypeAlphabet


UIKeyboardTypeAlphabet = UIKeyboardTypeASCIICapable, // Deprecated 已废弃
-----------------------------------End

上一篇下一篇

猜你喜欢

热点阅读