iphone - 防止选项卡在选项卡视图控制器中更改

发布于 2024-10-15 19:47:17 字数 320 浏览 2 评论 0原文

我的 MainWindow.xib 文件中有选项卡视图控制器。它有 3 个选项卡。每个选项卡的视图控制器也仅在 XIB 中分配。 我想防止根据某些条件检查显示选项卡 3。

我知道我必须实现委托方法:

- (BOOL)tabBarController:(UITabBarController *)tbController shouldSelectViewController:(UIViewController *)viewController

但是我如何检查它是否是第三个选项卡?因此,如果是第三个选项卡,我将返回“否”,否则我将返回“是”。

I've having tab view controller in my MainWindow.xib file. It has 3 tabs. The view controllers for each tab is also assigned in XIB only.
I want to prevent tab 3 being displayed depending on some condition check.

I know that I've to implement the delegate method:

- (BOOL)tabBarController:(UITabBarController *)tbController shouldSelectViewController:(UIViewController *)viewController

But how can I check if its third tab or not? So if its third tab, i'll return NO, else I'll return YES.

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

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

发布评论

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

评论(1

心碎的声音 2024-10-22 19:47:17
// This should tell you the tab index
NSInteger tabIndex = [[tbController viewControllers] indexOfObject:viewController];

// Then it's easy
return tabIndex != 3;
// This should tell you the tab index
NSInteger tabIndex = [[tbController viewControllers] indexOfObject:viewController];

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