ios – TabBarController返回null

前端之家收集整理的这篇文章主要介绍了ios – TabBarController返回null前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在故事板中有一个tabbarcontroller作为初始视图控制器

这是如何返回null的

UITabBarController* tabbarController = (UITabBarController*) self.tabBarController;
NSLog(@"%@",tabbarController);
NSLog(@"%@",self.navigationController.tabBarController);

本来就是我想要做的

NSMutableArray *newTabs = [NSMutableArray arrayWithArray:[self.tabBarController viewControllers]];
NSLog(@"\n\n\n%lu\n\n\n",(unsigned long)[newTabs count]);
NSLog(@"self.tabBarController.viewControllers %@ \n\n",self.tabBarController);
[newTabs removeObjectAtIndex: 1];
[self.tabBarController setViewControllers:newTabs];

为什么我会变空?

解决方法

返回null的原因是self是你的UITabBarController,因此,它在self.tabBarController上没有任何东西

您的代码应如下所示:

NSMutableArray *newTabs = [NSMutableArray arrayWithArray:[self viewControllers]];
NSLog(@"\n\n\n%lu\n\n\n",(unsigned long)[newTabs count]);
NSLog(@"self.viewControllers %@ \n\n",self);
[newTabs removeObjectAtIndex: 1];
[self setViewControllers:newTabs];
原文链接:https://www.f2er.com/iOS/328461.html

猜你在找的iOS相关文章