加入你只想输入字母,数字而不能输入汉字,如图:
textfiled实现代码:
_loginField.keyboardType = UIKeyboardTypeAlphabet; [_loginField setDelegate:self];
在代理方法中实现如下代码:
- (void)textFieldDidBeginEditing:(UITextField *)textField { if ([textField isEqual:_loginField]) { textField.autocorrectionType=UITextAutocorrectionTypeNo; } }
时间: 2024-11-10 11:52:22