iOS 拨打电话

拨打电话方式

第一种,不会跳出app

UIWebView *callWebView = [[UIWebView allocinit];

NSURL *telURL = [NSURL URLWithString:@"tel:10086"];

[callWebView loadRequest:[NSURLRequest requestWithURL:telURL]];

 [ self . view   addSubview :callWebView];

第二种,不会跳出app

NSString *allString = [NSString stringWithFormat:@"tel:10086"];

   [[UIApplication sharedApplicationopenURL:[NSURL URLWithString:allString]];

第三种,不会跳出app

NSMutableString * str=[[NSMutableString alloc] initWithFormat:@ "telprompt://%@" ,@ "10086" ];
// NSLog(@"str======%@",str);
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]]



你可能感兴趣的:(其他)