iOS 10以上版本调用拨打电话方法,反应缓慢问题

iOS 10 以后,调用系统的拨打电话方法,弹框会过好久才弹出,解决方法入下:

NSString *telPhone = [NSString stringWithFormat:@"telprompt://%@", telString];
    
    NSString *version = [UIDevice currentDevice].systemVersion;
    
    if (version.doubleValue >= 10.0) {
        
        /// 大于等于10.0系统使用此openURL方法
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:telPhone] options:@{} completionHandler:nil];
        
    } else {
        
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:telPhone]];
        
    }

你可能感兴趣的:(iOS 10以上版本调用拨打电话方法,反应缓慢问题)