應用內撥打電話結束后返回應用一般在應用中撥打電話的方式是: [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://123456789"]];
用如下方式,可以使得用戶結束通話后自動返回到應用: UIWebView*callWebview =[[UIWebView alloc] init]; NSURL *telURL =[NSURL URLWithString:@"tel:number-to-call"]; [callWebview loadRequest:[NSURLRequest requestWithURL:telURL]]; 還有一種私有方法:(可能不能通過審核) [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://10086"]]; |
|