我正在使用UIWebview拨打电话给我一个“取消”和“呼叫”的提示我想要处理“呼叫”和“取消”Btns,如果我按“呼叫”,我可以打电话给如果我不接听电话,它会回到我的申请表,请帮我处理“通话”和“取消”Btns
UIWebview *webview = [[UIWebView alloc] initWithFrame:[UIScreen Screen].applicationFrame];
[webview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel:%@",newNumber]]]];
非常感谢!
答案 0 :(得分:1)
这是应用程序的默认行为。
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:[number stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]];
或
UIWebView *callWebview = [[UIWebView alloc] init];
NSURL *telURL = [NSURL URLWithString:];
[callWebview loadRequest:[NSURLRequest requestWithURL:telURL]];
看到差异。