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