gpt4 book ai didi

iphone - 我的 UITabBarController 的 didSelectViewController 方法没有被调用?

转载 作者:行者123 更新时间:2023-12-03 19:26:12 28 4
gpt4 key购买 nike

这是我的 app-delegate.m 的代码 stub ——它永远不会被调用。

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {
NSLog(@"%s", __FUNCTION__);
}

它是在这个app-delegate.h中定义的

@interface OrioleAppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate> {
UIWindow *window;
UITabBarController *tabBarController;
}

@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet UITabBarController *tabBarController;

@end

最佳答案

您是否在 UITabBarController 和应用程序委托(delegate)之间建立了连接?

- (void)applicationDidFinishLaunching:(UIApplication *)application
{
...
tabBarController.delegate = self;
...
}

关于iphone - 我的 UITabBarController 的 didSelectViewController 方法没有被调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2530266/

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