Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我使用以下 iPad 代码打开 URL,如何检索 Safari 或我的默认浏览器的实例对象
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.google.com"]];
你不能,一旦你打开 URL Safari 移动到前台,替换你的应用程序。从文档中:
如果资源是另一个应用程序,调用此方法可能会导致调用应用程序退出,以便启动另一个应用程序。
但是如果你愿意,你可以在你的应用程序中创建你自己的视图控制器,并实现一些基本的浏览器控件。该类UIWebView具有您可以使用的方法goBack。goForward
UIWebView
goBack
goForward