从 uiwebview 链接到其他选项卡栏视图
我有一个标签栏 iPhone 应用程序。第二个选项卡使用图像格式化文本,因此我将其作为 html 文件插入到 uiwebview 中。我想将文本的某些部分和此 html 文件中的某些图像的链接插入到具有不同参数的第一个选项卡视图。我怎样才能做到这一点?
I have a tab bar iphone app. The second tab has formatted text with images so I inserted it as html file to uiwebview. I would like insert links on some parts of the text and on some images in this html file to the first tab view with different parameters. How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建 UIWebViewDelegate 的实例,并实现方法:
...并实现您的代码,以便在用户单击任何“特殊”链接时在第一个选项卡上执行操作。另外,当单击的链接是这些链接之一时,请确保返回“false”,以阻止 webview 在第二个选项卡中加载它们。
Create an instance of UIWebViewDelegate,and implement the method:
...and implement your code to do things on the first tab when the user clicks any of the "special" links. Also, make sure to return "false" when the link clicked is one of those links, to stop the webview from loading them in the second tab.