iOS 拨打电话延迟

2019-03-21  本文已影响0人  小风车tl

#解决iOS10及其以上系统弹出拨号框延迟的问题

+ (void)callPhoneWithPhoneNum:(NSString*)phoneNum

{

     NSString *phoneStr = [NSString stringWithFormat:@"tel://%@", phoneNum];

      if ([[UIDevice currentDevice].systemVersion floatValue] >= 10.0) {

        //10及其以上系统

        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneStr] options:@{} completionHandler:nil];

        } else {

         //10以下系统

         [[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneStr]];

    }

}  

上一篇下一篇

猜你喜欢

热点阅读