iOS10之后的注释
UIKeyboardTypeNumberPad,// A number pad with locale-appropriate digits (0-9,۰-۹,०-९, etc.). Suitable for PIN entry.
UIKeyboardTypeASCIICapableNumberPadNS_ENUM_AVAILABLE_IOS(10_0),// A number pad (0-9) that will always be ASCII digits.
iOS10之前的注释
UIKeyboardTypeNumberPad,// A number pad (0-9). Suitable for PIN entry.
iOS10之后新增加了UIKeyboardTypeASCIICapableNumberPad这种数字键盘类型,类似于之前的UIKeyboardTypeNumberPad。并且对UIKeyboardTypeNumberPad新增了波斯和印地语等数字键盘类型的支持。
iOS10 之前 iOS10 之后总结:所以在其他语言下(如波斯语,阿拉伯语等),如上图所示,用户可以点击左下角切换成其他的数字键盘,如果我们只想要用户使用阿拉伯数字键盘,就要判断系统是否是iOS10以上,如果是iOS10以上,就使用UIKeyboardTypeASCIICapableNumberPad,10以下就使用UIKeyboardTypeNumberPad。
网友评论