0

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

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

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

4

1 回答 1

0

试试这个,它工作正常

[[UIApplication sharedApplication] openURL:
                      [NSURL URLWithString:@"http://www.google.com"]];
于 2014-04-06T11:01:11.270 回答