我会撒谎在我的应用程序中拨打电话(我可以使用电话:),但我想在用户挂断后返回我离开的应用程序。那可能吗?
问问题
1952 次
3 回答
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];
}
}
于 2011-08-09T11:37:59.913 回答
3
不,这不对。恐怕电话结束后,用户控制他们导航的位置。默认情况下,它停留在手机应用程序中,用户退出它的唯一方法是点击主页按钮,这会将他们带到主屏幕。保存您的状态,并在他们像其他人一样回来时重新加载。
于 2010-06-29T23:11:14.963 回答
0
通话完成后,您无法自动返回应用程序,但如果您的应用程序支持 iOS 4,则其多任务处理功能(如果应用程序支持)可以将用户带回到他或她在通话前中断的位置,当该应用程序重新启动。
如果您使用 iOS 3 或更早版本,您将需要自己手动保存应用程序的状态,然后在重新启动时将用户带回该状态。
于 2010-06-29T23:46:28.060 回答