我一直在我的应用程序中打开以下网站:
NSURL * url = [[NSURL alloc] initWithString:@"http://www.google.com"];
[[UIApplication sharedApplication] openURL:url];
但这会在打开站点之前终止应用程序。打开网站时,如何让应用程序在后台运行/暂停?
我一直在我的应用程序中打开以下网站:
NSURL * url = [[NSURL alloc] initWithString:@"http://www.google.com"];
[[UIApplication sharedApplication] openURL:url];
但这会在打开站点之前终止应用程序。打开网站时,如何让应用程序在后台运行/暂停?