如何在不关闭应用程序的情况下打开网站

时间:2013-09-23 18:01:55

标签: uiwebview

我一直在我的应用中打开以下网站:

NSURL * url = [[NSURL alloc] initWithString:@"http://www.google.com"];
[[UIApplication sharedApplication] openURL:url];

但是这会在打开网站之前终止应用程序。在打开网站时,如何让应用程序在后台运行/暂停?

1 个答案:

答案 0 :(得分:0)

试试这个,它的工作正常

[[UIApplication sharedApplication] openURL:
                      [NSURL URLWithString:@"http://www.google.com"]];