关于iOS textfield 在限制输入后无法退格的问题

 

通常项目当中要用到textfiled的限制字数输入的代理 


- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
    if (textField == self.titleField) {
        if (textField.length > 20) 
	return NO;
    }

    return YES;
}
 当输到第19个字符后想退格 因为

textField.length > 20 一直是大于20

所以无法输入也无法退格。

只要稍微加一个判断 :

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
  
  if ([[textField.text stringByReplacingCharactersInRange:range withString:string] length] >20) {
            [MBHelper showHUDViewWithText:@"只允许输入两位数字" withDur:1];
            return NO;
        }

    return YES;
}
这样就可以了.

或者把return No 去掉换成:

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
    if (textField == self.titleField) {
        if (textField.length > 20) 
	textfield.text = [textfiled.text substringToIndex:20];
    }

    return YES;
}

另外 textField 的代理用来过滤字数 会存在一个系统的Bug
系统代理无法监听用户点选键盘智能提醒的汉字,推荐使用 自定义监听事件来处理

[_titleTextField addTarget:self action:@selector(textfieldDidChange:) forControlEvents:UIControlEventEditingChanged];



但这个系统Bug 放在 UITextView 中 我还不知道怎么解决,有想法的可以交流一下哈。


你可能感兴趣的:(ios,个人心得)