tabBarController 的 didSelectViewController 不起作用?
我已经在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无论您在何处创建 UITabBarController,都需要设置其 将属性委托给自定义UITabBarControllerDelegate 您创建的对象。
如果您已扩展应用程序委托以实现 UITabBarContollerDelegate 协议的方法,并在应用程序委托中创建 UITabBarController,则在创建后添加以下内容:
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: