以编程方式在iPhone上拨打电话并在挂断后返回同一个应用程序

时间:2010-06-29 23:08:51

标签: iphone tel

我会撒谎在我的应用程序中拨打电话(我可以使用电话:)但我想在用户挂机后返回我离开的应用程序。 这可能吗?

3 个答案:

答案 0 :(得分:4)

我从Apple网站获得了此代码,它运行良好:

-(IBAction) dialNumber:(id)sender{

NSString *aPhoneNo = [@"tel://" stringByAppendingString:[itsPhoneNoArray objectAtIndex:[sender tag]]] ; NSURL *url= [NSURL URLWithString:aPhoneNo];

NSString *osVersion = [[UIDevice currentDevice] systemVersion];

if ([osVersion floatValue] >= 3.1) { 
UIWebView *webview = [[UIWebView alloc] initWithFrame:[UIScreen mainScreen].applicationFrame]; 
[webview loadRequest:[NSURLRequest requestWithURL:url]]; 
webview.hidden = YES; 
// Assume we are in a view controller and have access to self.view 
[self.view addSubview:webview]; 
[webview release]; 
} else { 
// On 3.0 and below, dial as usual 
[[UIApplication sharedApplication] openURL: url];
}


}

答案 1 :(得分:3)

不,不是。用户控制电话结束后他们导航的位置我很害怕。默认情况下,它保留在手机应用程序中,用户退出手机应用程序的唯一方法是点击主页按钮,将其带到主屏幕。保存你的状态,当他们像其他人一样回来时重新加载它。

答案 2 :(得分:0)

在通话完成后,您无法自动返回应用,但如果您的应用支持iOS 4,则其多任务处理功能(如果应用支持它们)可以将用户带回到他或她之前离开的位置。当应用重新启动时,请致电。

如果您使用iOS 3或更早版本,则需要自行手动保存应用程序的状态,然后在重新启动时将用户恢复到该状态。