实名认证判断身份证和姓名是否合法

//判断姓名

-(void)checkName{

NSString * ptr = @"^[\u4E00-\u9FA5]*$";

NSPredicate * pred = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",ptr];

if (![pred evaluateWithObject:_realname.text]||_realname.text.length<2||_realname.text.length>6) {

UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"" message:[NSString stringWithFormat:@"请输入合法姓名!"] preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *action = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

}];

[alert addAction:action];

[self presentViewController:alert animated:YES completion:nil];

}else{

[self upload];

}

}

//判断身份证号是否合法

-(void)checkIDcard

{

NSString *ptr = @"^(^[1-9]\\d{7}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])\\d{3}$)|(^[1-9]\\d{5}[1-9]\\d{3}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])((\\d{4})|\\d{3}[Xx])$)$";

NSPredicate *pred = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",ptr];

if (_IDnum.text.length<=0) {

UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"" message:[NSString stringWithFormat:@"请输入18位有效身份证号"] preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *action = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

}];

[alert addAction:action];

[self presentViewController:alert animated:YES completion:nil];

}else{

if ([pred evaluateWithObject:_IDnum.text]) {

if (_IDnum.text.length == 18) {

//将前17位加权因子保存在数组里

NSArray * idCardWiArray = @[@"7", @"9", @"10", @"5", @"8", @"4", @"2", @"1", @"6", @"3", @"7", @"9", @"10", @"5", @"8", @"4", @"2"];

//这是除以11后,可能产生的11位余数、验证码,也保存成数组

NSArray * idCardYArray = @[@"1", @"0", @"10", @"9", @"8", @"7", @"6", @"5", @"4", @"3", @"2"];

//用来保存前17位各自乖以加权因子后的总和

NSInteger idCardWiSum = 0;

for(int i = 0;i < 17;i++)

{

NSInteger subStrIndex = [[_IDnum.text substringWithRange:NSMakeRange(i, 1)] integerValue];

NSInteger idCardWiIndex = [[idCardWiArray objectAtIndex:i] integerValue];

idCardWiSum+= subStrIndex * idCardWiIndex;

}

//计算出校验码所在数组的位置

NSInteger idCardMod=idCardWiSum%11;

//得到最后一位身份证号码

NSString * idCardLast= [_IDnum.text substringWithRange:NSMakeRange(17, 1)];

if (idCardMod == 2) {

if ([idCardLast isEqualToString:@"X"]) {

[self checkName];

}else{

UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"" message:[NSString stringWithFormat:@"请输入18位有效身份证号"] preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *action = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

}];

[alert addAction:action];

[self presentViewController:alert animated:YES completion:nil];

}

}else{

//用计算出的验证码与最后一位身份证号码匹配,如果一致,说明通过,否则是无效的身份证号码

if([idCardLast isEqualToString: [idCardYArray objectAtIndex:idCardMod]])

{

[self checkName];

}else{

UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"" message:[NSString stringWithFormat:@"请输入18位有效身份证号"] preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *action = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

}];

[alert addAction:action];

[self presentViewController:alert animated:YES completion:nil];

}

}

}else{

UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"" message:[NSString stringWithFormat:@"请输入18位有效身份证号"] preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *action = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

}];

[alert addAction:action];

[self presentViewController:alert animated:YES completion:nil];

}

}else{

UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"" message:[NSString stringWithFormat:@"请输入18位有效身份证号"] preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *action = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

}];

[alert addAction:action];

[self presentViewController:alert animated:YES completion:nil];

}

}

}

你可能感兴趣的:(实名认证判断身份证和姓名是否合法)