美文网首页
【iOS】self.tabBarController.selec

【iOS】self.tabBarController.selec

作者: 小慧子zZ | 来源:发表于2019-04-25 20:01 被阅读0次

今天自己犯了一个低级的错误,self.tabBarController.selectedIndex = 1;  方法设置了去没有效果,并且一直找不到原因,Why? 后来发现设置的类继承自UITabBarController,需要用 self.selectedIndex = 1; 设置。

两者的区别:

在继承自UITabBarController的类中使用self.selectedIndex

例如:@interface XX : UITabBarController<UITabBarControllerDelegate>

在继承自UIViewController、UINavigationController或其他的Controller中使用self.tabBarController.selectedIndex

例如:@interface XX :UIViewController

相关文章

网友评论

      本文标题:【iOS】self.tabBarController.selec

      本文链接:https://www.haomeiwen.com/subject/dwltnqtx.html