美文网首页
textField限制输入字符串的字数

textField限制输入字符串的字数

作者: 崔又淇 | 来源:发表于2016-11-08 13:50 被阅读23次

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {

if (_viewTag == VIEW_TAG) {

if (range.length == 1 && string.length == 0) {

return YES;

}

else if (_modifyTextField.text.length >= 20) {

_modifyTextField.text = [textField.text substringToIndex:20];

return NO;

}

}

return YES;

}

相关文章

网友评论

      本文标题:textField限制输入字符串的字数

      本文链接:https://www.haomeiwen.com/subject/hlvauttx.html