关于IOS键盘样式(给新手)

1、英文键盘:
  • UIKeyboardTypeAlphabet(Alphabet字母)
  • UIKeyboardTypeASCIICapable
  • UIKeyboardTypeDefault
这三个默认都显示字母表。

2、数字键盘
  • UIKeyboardTypeDecimalPad (Decimal十进制)

3、电子邮箱键盘
  • UIKeyboardTypeEmailAddress

4、没有符号的英文键盘
  • UIKeyboardTypeNamePhonePad

5、没有小数点的数字键盘
  • UIKeyboardTypeNumberPad

6、全键盘的数字键盘
  • UIKeyboardTypeNumbersAndPunctuation

7、带符号的数字键盘
  • UIKeyboardTypePhonePad

8、推特键盘
  • UIKeyboardTypeTwitter


你可能感兴趣的:(键盘)