gpt4 book ai didi

iphone - 标签栏 Controller :shouldSelectViewController method doesn't fire

转载 作者:行者123 更新时间:2023-12-03 18:50:31 25 4
gpt4 key购买 nike

我已阅读 Apple 文档 - http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/TabBarControllers/TabBarControllers.html#//apple_ref/doc/uid/TP40007457-CH102-SW1关于以编程方式创建 TabBar。我想检测 TabBar 选择,因此我使用了以下委托(delegate)方法。我不知道为什么,但当我更改 iPhone 上的选项卡时,这些方法不会被触发。任何人都可以提供一些关于这里出了什么问题的想法吗?这真的很有帮助。谢谢。

- (BOOL)tabBarController:(UITabBarController *)tbController shouldSelectViewController:(UIViewController *)viewController
{
if (viewController == [tbController.viewControllers objectAtIndex:3] )
{
// Enable all but the last tab.
return NO;
}

return YES;
}

- (void)tabBarController:(UITabBarController *)tbController didSelectViewController:(UIViewController *)viewController {
if (viewController == [tbController.viewControllers objectAtIndex:self.appTabs.count] )
{
//do some action
}
}

最佳答案

您在创建 UITabBarController 时是否忘记设置委托(delegate)?

someTabBarController.delegate = self;

关于iphone - 标签栏 Controller :shouldSelectViewController method doesn't fire,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5462194/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com