如何将html url导航到另一个窗口

时间:2010-01-15 14:44:49

标签: iphone

特别感谢我发送回答........ 我是iphone开发的初学者。我在UISegment控制器中调用了html页面。该页面html页面中的url在同一页面中打开。在html页面中,我编写了以下代码

<a href="http://google.com">www.google.com</a>

但是它在同一页面上的UISegment Control of WebView中打开了该URL。我希望在iphone的safari浏览器的新页面中打开该URL。

2 个答案:

答案 0 :(得分:1)

<A HREF="www.google.com" TARGET="_blank">google in a new window</A>

答案 1 :(得分:1)

您可以将代理人分配到您的网络视图。

在委托的课程中,实施-webView:shouldStartLoadWithRequest:navigationType:。然后使用UIApplication的-openURL:关闭应用程序并在MobileSafari中打开页面。