iOS键盘类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS键盘类型相关的知识,希望对你有一定的参考价值。

 

一、键盘风格  

UIKit框架支持8种风格键盘。

    1. typedef enum {  
    2.     UIKeyboardTypeDefault,                // 默认键盘:支持所有字符   
    3.     UIKeyboardTypeASCIICapable,           // 支持ASCII的默认键盘   
    4.     UIKeyboardTypeNumbersAndPunctuation,  // 标准电话键盘,支持+*#等符号   
    5.     UIKeyboardTypeURL,                    // URL键盘,有.com按钮;只支持URL字符   
    6.     UIKeyboardTypeNumberPad,              //数字键盘   
    7.     UIKeyboardTypePhonePad,               // 电话键盘   
    8.     UIKeyboardTypeNamePhonePad,           // 电话键盘,也支持输入人名字   
    9.     UIKeyboardTypeEmailAddress,           // 用于输入电子邮件地址的键盘   
    10. } UIKeyboardType; 

用法用例:

textView.keyboardtype= UIKeyboardTypeNumberPad;

 

UIKeyboardTypeDefault:

技术分享

 

 

UIKeyboardTypeASCIICapable:

技术分享

 

UIKeyboardTypeNumbersAndPunctuation:

技术分享

 

 

UIKeyboardTypeURL:

技术分享

 

UIKeyboardTypeNumberPad:

技术分享

 

UIKeyboardTypePhonePad:

技术分享

 

UIKeyboardTypeNamePhonePad:

技术分享

 

UIKeyboardTypeEmailAddress:

技术分享

 

UIKeyboardTypeDecimalPad:

技术分享

 

UIKeyboardTypeTwitter:

技术分享

 

UIKeyboardTypeWebSearch:

技术分享

 

UIKeyboardTypeAlphabet:

技术分享

 

 

 

以上是关于iOS键盘类型的主要内容,如果未能解决你的问题,请参考以下文章

李洪强iOS开发之 - enum与typedef enum的用法

IOS 软键盘搜索,下一个,确定等按键的点击事件监听

react native 怎么设置键盘类型

react-native 无法构建 ios:(错误 xcode Flipper)Typedef 重新定义不同类型('uint8_t'(又名'unsigned char')与'enum clockid_

React Native Build Error on IOS - typedef用不同类型重新定义('uint8_t'(又名'unsigned char')与'enum clockid_t')

鼠标键盘输入的基本用法