是否可以在数字输入视图和UIKeyboardTypeASCIICapable的字母输入视图之间切换代码?我想默认显示数字输入视图,但也允许用户输入字符。 我需要
答案 0 :(得分:1)
没有直接的方法可以模拟按下iPhone键盘上的123
键来切换数字/符号和键盘字母。
你可以做的是在两种不同的键盘类型之间切换。例如:
someTextField.keyboardType = UIKeyboardTypeASCIICapable; // start with one type
然后当你想切换时,你可以这样做:
- (void)toggleKeyboardType:(UITextField *)textfield {
if (textfield.keyboardType == UIKeyboardTypeNumbersAndPunctuation) {
textfield.keyboardType = UIKeyboardTypeASCIICapable;
} else {
textfield.keyboardType = UIKeyboardTypeNumbersAndPunctuation;
}
[textfield reloadInputViews];
}