UITextField限制字数的方法


在输入东西的时候,如果想限制最大字数,可以用下面方法

  - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string; 
    { 
        if ([string isEqualToString:@"\n"])  
        { 
            return YES; 
        } 
        NSString * toBeString = [textField.text stringByReplacingCharactersInRange:range withString:string]; 
         
        if (self.myTextField == textField)  
        { 
            if ([toBeString length] > 20) { 
                textField.text = [toBeString substringToIndex:20]; 
                UIAlertView *alert = [[[UIAlertView alloc] initWithTitle:nil message:@"超过最大字数不能输入了" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil] autorelease]; 
                [alert show]; 
                return NO; 
            } 
        } 
        return YES; 
    }  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM