码迷,mamicode.com
首页 > 其他好文 > 详细

UItexfile实时验证输入字符

时间:2014-06-15 15:39:11      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:class   tar   ext   string   har   file   

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

{

    NSString * toBeString = [textField.text stringByReplacingCharactersInRange:range withString:string];

    

    UITextField *loginPass = _textArr[1];

    if (loginPass == textField) {

        if ([toBeString length] > 12) {

            textField.text = [toBeString substringToIndex:12];

            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"长度不能超过12" delegate:nil cancelButtonTitle:@"ok" otherButtonTitles:nil, nil];

            [alert show];

            return NO;

        }

    }

    return YES;

}

UItexfile实时验证输入字符,布布扣,bubuko.com

UItexfile实时验证输入字符

标签:class   tar   ext   string   har   file   

原文地址:http://blog.csdn.net/alincexiaohao/article/details/30482387

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!