iOS 邮箱验证失败

//利用正则表达式验证邮箱

  • (BOOL)isValidateEmail:(NSString *)email{

    NSString *emailRegex = @"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}";

    NSPredicate *emailTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", emailRegex];
    return [emailTest evaluateWithObject:email];

    }

查了很多资料 好多格式都是这样写的 怎么我的老是验证错误

回答:

已解决 是在输入的时候要手动去掉空格

回答:

图片描述

图片描述

下面这个是我写的,你那下划线的那里是不一样,其他都一样,你试试吧

以上是 iOS 邮箱验证失败 的全部内容, 来源链接: utcz.com/p/184813.html

回到顶部