iPhone - 从 UIWebView 切换选项卡
我有一个网络视图,我想在特定事件期间手动切换到另一个选项卡。该事件是任意的,但我不知道如何切换选项卡。在我的其他视图中,我有以下代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
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).