标签:
加入你只想输入字母,数字而不能输入汉字,如图:
textfiled实现代码:
_loginField.keyboardType = UIKeyboardTypeAlphabet;
[_loginField setDelegate:self];
在代理方法中实现如下代码:
- (void)textFieldDidBeginEditing:(UITextField *)textField { if ([textField isEqual:_loginField]) { textField.autocorrectionType=UITextAutocorrectionTypeNo; } }
标签:
原文地址:http://www.cnblogs.com/caicaige/p/5454344.html