Objective C: How to switch from one Tab bar to another via program

前端 未结 2 2093
忘掉有多难
忘掉有多难 2021-02-01 18:06

I have 5 different tabs in my tabbar controller.

My intention is to be able to switch from one tab bar via code. For example I am currently in the 5th tab of the app and

2条回答
  •  南旧
    南旧 (楼主)
    2021-02-01 18:14

    Set selectedViewController property of UITabBarController:

    self.myTabBarController.selectedViewController = myViewController;
    

    Use as below

    self.myTabBarController.selectedViewController 
        = [self.myTabBarController.viewControllers objectAtIndex:0];
    

提交回复
热议问题