tabBarController 的 didSelectViewController 不起作用?

发布于 2024-08-12 02:41:21 字数 294 浏览 5 评论 0原文

我已经在IB中实现了标签栏控制器。但是当我在 appdelegate.m 中编写以下方法时,当我选项卡时它不会被调用(我已经设置了断点)。

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController

- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item

I have implemented Tab bar controller in IB. But when I write the following method in appdelegate.m, it is not called (I have put break point) when i tab.

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController

- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item

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

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

发布评论

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

评论(1

请恋爱 2024-08-19 02:41:21

无论您在何处创建 UITabBarController,都需要设置其 将属性委托给自定义UITabBarControllerDelegate 您创建的对象。

如果您已扩展应用程序委托以实现 UITabBarContollerDelegate 协议的方法,并在应用程序委托中创建 UITabBarController,则在创建后添加以下内容:

tabBarVaribleName.delegate = self;

Wherever you create the UITabBarController, you need to set its delegate property to the custom UITabBarControllerDelegate object you've created.

If you've extended your application delegate to implement the methods of the UITabBarContollerDelegate protocol, and create the UITabBarController in the application delegate, then add the following after creating it:

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