打开TabBar子视图
我在 TabBar 应用程序中有 2 个子视图。我应该从第二个视图转到第一个视图,但不是借助选项卡栏,而是通过第二个视图上的另一个按钮。
如果我创建简单的segue(在第二个视图和第一个视图上的 bytton 之间),选项卡栏会认为我仍在第二个视图上,并且选项卡栏上的第二个按钮仍然突出显示。
你知道实现它的正确方法吗?
I got 2 subviews in a TabBar app. I should go to the 1st view from the 2nd, but not with help of tabbar, but throught another button, which is on the 2nd view.
If i create simple segue (between bytton on the 2nd view and the 1st view), tabbar will think, that i am still on the 2nd view and the 2nd button on the tabbar still highlighted.
Do you know correct way to realise it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试使用 UITabBarController.selectedViewController< /a> 属性而不是 segue。
You can try to use the UITabBarController.selectedViewController property instead of segue.
如果您想在不触摸 tababr 控制器的情况下更改视图,
请使用这行代码,其中您要使用
self.tabBarController.selectedViewController=[self.tabBarController.viewControllers objectAtIndex:1];
使用这一行,您可以移动选项卡控制器的 2 个选项卡,而无需触摸选项卡栏。
If you want to change your view without touching tababr controller
use this line of code where you want to use
self.tabBarController.selectedViewController=[self.tabBarController.viewControllers objectAtIndex:1];
using this line you can move the 2 tab of the tabcontroller without touching tabbar.