UIKeyboardType 图解

UIKit > UIKeyboardType

枚举(Enumeration)

UIKeyboardType

显示在给定的以文本为基础的视图上的键盘类型。

声明

typedef enum UIKeyboardType : NSInteger {
    UIKeyboardTypeDefault,
    UIKeyboardTypeASCIICapable,
    UIKeyboardTypeNumbersAndPunctuation,
    UIKeyboardTypeURL,
    UIKeyboardTypeNumberPad,
    UIKeyboardTypePhonePad,
    UIKeyboardTypeNamePhonePad,
    UIKeyboardTypeEmailAddress,
    UIKeyboardTypeDecimalPad,
    UIKeyboardTypeTwitter,
    UIKeyboardTypeWebSearch,
    UIKeyboardTypeASCIICapableNumberPad,
    UIKeyboardTypeAlphabet = UIKeyboardTypeASCIICapable
} UIKeyboardType;

特征


常量

UIKeyboardTypeDefault
为当前输入方法指定默认键盘。

UIKeyboardType 图解_第1张图片
UIKeyboardTypeDefault

UIKeyboardTypeASCIICapable
指定显示标准阿西克(ASCII)字符的键盘。

UIKeyboardType 图解_第2张图片
UIKeyboardTypeASCIICapable

UIKeyboardTypeNumbersAndPunctuation
指定数字和标点符号键盘。

UIKeyboardType 图解_第3张图片
UIKeyboardTypeNumbersAndPunctuation

UIKeyboardTypeURL
指定为录入URL而优化的键盘。这个键盘类型明显突出了点(“.”)和反斜线(“/”)符号以及“.com”字符串。

UIKeyboardType 图解_第4张图片
UIKeyboardTypeURL

UIKeyboardTypeNumberPad
指定为录入PIN而设计的数字键盘。这个键盘类型明显突出了数字0到9。这个键盘类型不支持自动大写(auto-capitalization)。

UIKeyboardType 图解_第5张图片

UIKeyboardTypePhonePad
指定为输入电话号码而设计的键盘。这个键盘类型明显突出了数字0到9以及“*”和“#”符号。这个键盘类型不支持自动大写。

UIKeyboardType 图解_第6张图片
UIKeyboardTypePhonePad
UIKeyboardType 图解_第7张图片
UIKeyboardTypePhonePad

UIKeyboardTypeNamePhonePad
指定为输入人名或电话号码而设计的键盘。这个键盘类型不支持自动大写。

UIKeyboardType 图解_第8张图片
UIKeyboardTypeNamePhonePad
UIKeyboardType 图解_第9张图片
UIKeyboardTypeNamePhonePad

UIKeyboardTypeEmailAddress
指定为录入电子邮箱地址而优化的键盘。这个键盘类型明显突出了at(“@”),点(“.”)和空格符号。

UIKeyboardType 图解_第10张图片
UIKeyboardTypeEmailAddress

UIKeyboardTypeDecimalPad
指定带有数字和小数点的键盘。

UIKeyboardType 图解_第11张图片
UIKeyboardTypeDecimalPad

UIKeyboardTypeTwitter
指定为输入Twitter文字而优化的键盘,容易按到at(“@”)和井号(“#”)符号。

UIKeyboardType 图解_第12张图片
UIKeyboardTypeTwitter

UIKeyboardTypeWebSearch
指定为网络搜索方面和URL录入而优化的键盘。这个键盘类型明显突出了空格和点(“.”)符号。

UIKeyboardType 图解_第13张图片
UIKeyboardTypeWebSearch

UIKeyboardTypeASCIICapableNumberPad
指定了数字面板,只输出阿西克位。

UIKeyboardTypeNumberPad数字键盘在ios10下无效了,新的枚数字类型:UIKeyboardTypeASCIICapableNumberPad

UIKeyboardType 图解_第14张图片
UIKeyboardTypeASCIICapableNumberPad

UIKeyboardTypeAlphabet
指定了为字母录入而优化的键盘。

Deprecated
使用 UIKeyboardTypeASCIICapable 替代。

UIKeyboardType 图解_第15张图片
UIKeyboardTypeAlphabet

你可能感兴趣的:(UIKeyboardType 图解)