iOS 10以上版本调用拨打电话方法,反应缓慢问题
作者:
霜419 | 来源:发表于
2017-09-06 14:39 被阅读0次
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以上版本调用拨打电话方法,反应缓慢问题
本文链接:https://www.haomeiwen.com/subject/wexvjxtx.html
网友评论