Uiwebview 导航和重定向
文本视图中出现的任何链接都会自动突出显示,并作为链接应用并被重定向到 safari,但我希望将其重定向到我为浏览而创建的 Uiwebview。这样我就不会离开我的应用程序。那么我如何将我的页面链接到 uiwebview 页面。
谢谢。
Any link which appears in a textview are automatically highlighted and apperas as a link and are being redirected to safari, but instead i want it to be redirected to a Uiwebview which i create for browsing. so that i won't be navigated away from my application. So how can i link my page to a uiwebview page.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个加载 .xib 的 UIWebView 类 (WebViewController),如下所示:
然后在实现文件中,实现此方法:
然后在实例化 Web 视图的委托类中,向 WebViewController 提供 url 并将其推送到导航控制器堆栈:(
假设您将委托类添加到应用程序委托中的 UINavigationController 中)
Create a UIWebView class (WebViewController) that loads a .xib and looks something like this:
Then in the implementation file, implement this method:
Then in the delegate class that instantiates the web view, feed WebViewController the url and push it to the navigation controller stack:
(This assumes that you added the delegate class to a UINavigationController in the app's delegate)