码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 验证邮箱和手机 拨打电话

时间:2015-09-10 15:40:47      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:

//邮箱

+ (BOOL)checkEmail:(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];

}

 

//手机

+ (BOOL)checkPhoneNum:(NSString *)numStr

{

    

    NSString * MOBILE            = @"^1(3[0-9]|5[0-35-9]|7[06-8]|8[0-9])\\d{8}$";

 

    NSString * CM                = @"^1(34[0-8]|(3[5-9]|5[017-9]|78|8[2-478])\\d)\\d{7}$";

 

    NSString * CU                = @"^1(3[0-2]|5[256]|7[06]|8[56])\\d{8}$";

 

    NSString * CT                = @"^1((33|53|77|8[019])[0-9]|349)\\d{7}$";

 

    NSPredicate *regextestmobile = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", MOBILE];

    NSPredicate *regextestcm     = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", CM];

    NSPredicate *regextestcu     = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", CU];

    NSPredicate *regextestct     = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", CT];

    BOOL res1                    = [regextestmobile evaluateWithObject:numStr];

    BOOL res2                    = [regextestcm evaluateWithObject:numStr];

    BOOL res3                    = [regextestcu evaluateWithObject:numStr];

    BOOL res4                    = [regextestct evaluateWithObject:numStr];

    

    if (res1 || res2 || res3 || res4 )

    {

        return YES;

    }

    else

    {

        return NO;

    }

}

 

拨打电话

number = @"13212341234";

[[UIApplication sharedApplication]openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel://%@",number]]];

iOS 验证邮箱和手机 拨打电话

标签:

原文地址:http://www.cnblogs.com/liaolijun/p/4797748.html

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