我是靠谱客的博主 辛勤大白,最近开发中收集的这篇文章主要介绍[iOS]验证手机号及拨打电话,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

验证手机号及拨打电话

/// 拨打电话
+ (void)callTelpromptWithPhone:(NSString *)phone {
    NSString *tempPhone = [NSString stringWithFormat:@"telprompt://%@",phone];
    if (@available(iOS 10.0, *)) {
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:tempPhone] options:@{} completionHandler:nil];
    } else {
        // Fallback on earlier versions
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:tempPhone]];
    }
}
/// 替换手机号码中间四位为*号
+ (NSString *)replacingSubStringInPhone:(NSString *)thePhone {
    NSString *newString = thePhone;
    if (thePhone.length > 8) {
        // 字符串的截取
        NSString *string = [thePhone substringWithRange:NSMakeRange(3,4)];
        // 字符串的替换
        newString = [thePhone stringByReplacingOccurrencesOfString:string withString:@"****"];
    }
    return newString;
}
/// 验证手机号码规范
+ (BOOL)checkMobileNumber:(NSString *)moblieNum {
    /**
     * 移动:134[0-8],135,136,137,138,139,150,151,157,158,159,182,187,188
     * 联通:130,131,132,152,155,156,185,186
     * 电信:133,1349,153,180,189,181,173,174,177
     */
    NSString * MOBIL = @"^1(3[0-9]|5[0-35-9]|8[025-9])\d{8}$";
    NSString * CM = @"^1(34[0-8]|(3[5-9]|5[017-9]|8[2378])\d)\d{7}$";
    NSString * CU = @"^1(3[0-2]|5[256]|8[56])\d{8}$";
    NSString * CT = @"^1((33|53|7[347]|8[019])[0-9]|349)\d{7}$";
    
    NSPredicate *regextestmobile = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", MOBIL];
    NSPredicate *regextestcm = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", CM];
    NSPredicate *regextestcu = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", CU];
    NSPredicate *regextestct = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", CT];
    
    if (([regextestmobile evaluateWithObject:moblieNum]
         || [regextestcm evaluateWithObject:moblieNum]
         || [regextestct evaluateWithObject:moblieNum]
         || [regextestcu evaluateWithObject:moblieNum])) {
        // 手机号可用
        return YES;
    } else {
        return NO;
    }
}

最后

以上就是辛勤大白为你收集整理的[iOS]验证手机号及拨打电话的全部内容,希望文章能够帮你解决[iOS]验证手机号及拨打电话所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部