2011年2月24日 星期四

[iOS Dev] UIKeyboardType 所有鍵盤類型截圖

Reference:
iOS Reference Library - UIKeyboardType

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

UIKeyboardTypeDefault,
UIKeyboardTypeASCIICapable,
UIKeyboardTypeAlphabet


UIKeyboardTypeNumbersAndPunctuation


UIKeyboardTypeURL


UIKeyboardTypeNumberPad


UIKeyboardTypePhonePad


UIKeyboardTypeNamePhonePad (左下角切換至PhonePad)


UIKeyboardTypeEmailAddress


UIKeyboardTypeDecimalPad
Related Posts Plugin for WordPress, Blogger...