从 uiwebview 链接到其他选项卡栏视图

发布于 2024-10-14 20:28:45 字数 133 浏览 0 评论 0原文

我有一个标签栏 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

堇年纸鸢 2024-10-21 20:28:45

创建 UIWebViewDelegate 的实例,并实现方法:

"webView:shouldStartLoadWithRequest:navigationType:

Sent before a web view begins loading content."

...并实现您的代码,以便在用户单击任何“特殊”链接时在第一个选项卡上执行操作。另外,当单击的链接是这些链接之一时,请确保返回“false”,以阻止 webview 在第二个选项卡中加载它们。

Create an instance of UIWebViewDelegate,and implement the method:

"webView:shouldStartLoadWithRequest:navigationType:

Sent before a web view begins loading content."

...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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文