发布网友
共2个回答
热心网友
ios的键盘类型的设置一般是绑定在输入控件的属性上。如UITextField,UITextView,UISearchBar等控件。
textField.keyboardType=UIKeyboardTypeAlphabet;
UIKeyboardType还有如下的几种类型。根据你设置的类型不同,显示的键盘不同。
UIKeyboardTypeAlphabet
UIKeyboardTypeASCIICapable
UIKeyboardTypeDecimalPad
UIKeyboardTypeDefault
UIKeyboardTypeEmailAddress
UIKeyboardTypeNamePhonePad
UIKeyboardTypeNumberPad
。。。。。。追问太感谢了
热心网友
你说的是切换什么键盘,是换中英文和手写切换么,输入键盘上面的那个地球仪就是呀追问谢谢啊!我说的是开发遇到的问题