标签:io os ar for sp on c amp ad
/** 根据参数打电话 */
- (void)callPhoneWithString:(NSString *)phoneNumStr
{
NSURL * url = nil;
NSString * encode = [phoneNumStr encodedURLParameterString];
url = [NSURL URLWithString:[NSString stringWithFormat:@"tel://%@",encode]];
static UIWebView *webView = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
webView = [UIWebView new];
});
[webView loadRequest:[NSURLRequest requestWithURL:url]];
}
标签:io os ar for sp on c amp ad
原文地址:http://www.cnblogs.com/zhaodazhou/p/3987621.html