iPhone - 从 UIWebView 切换选项卡

发布于 2024-08-22 00:33:29 字数 264 浏览 5 评论 0原文

我有一个网络视图,我想在特定事件期间手动切换到另一个选项卡。该事件是任意的,但我不知道如何切换选项卡。在我的其他视图中,我有以下代码:

self.tabBarController.selectedViewController = [self.tabBarController.viewControllers objectAtIndex:2];

但是,这在我的自定义 UIWebView 类中不起作用。有一个简单的解决方案吗?

谢谢

I have a webview and I want to manually switch to another tab during a specific event. The event is arbitray, but I can't figure out hwo to switch teh tab. On my other views, I have the following code:

self.tabBarController.selectedViewController = [self.tabBarController.viewControllers objectAtIndex:2];

However, this does not work in my custom UIWebView class. Is there a simple solution to this?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

灰色世界里的红玫瑰 2024-08-29 00:33:29

您可以使用 selectedIndex 属性来更改选项卡。

您使用的是哪个版本的SDK?
因为在3.0版本之前,selectedViewController只能显示不可见的选项卡。 (请参阅 selectedViewController 的 3.0+ SDK 文档)。

You can use the selectedIndex property to change tab.

Which version the SDK are you using ?
Because prior to version 3.0, only the invisible tab could displayed by selectedViewController. (see the 3.0+ SDK doc for selectedViewController).

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