美文网首页
iOS应用内拨打电话

iOS应用内拨打电话

作者: Arthur澪 | 来源:发表于2019-04-12 17:32 被阅读0次

    拨打电话

    NSString *callPhone = [NSString stringWithFormat:@"telprompt://%@",@"10086"];
    CGFloat version = [[[UIDevice currentDevice]systemVersion]floatValue];
      if (version >= 10.0) {
                /// 大于等于10.0系统使用此openURL方法
            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:callPhone] options:@{} completionHandler:nil];
       } else {
            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:callPhone]];
       }
    或
    NSMutableString * str=[[NSMutableString alloc] initWithFormat:@"tel:%@",@"10086"];
    UIWebView * callWebview = [[UIWebView alloc] init];
    [callWebview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:str]]];
    [self.view addSubview:callWebview];
    

    相关文章

      网友评论

          本文标题:iOS应用内拨打电话

          本文链接:https://www.haomeiwen.com/subject/oxyxyftx.html