LoginSignup
3
4

More than 5 years have passed since last update.

ボタンをタップした時にTabBarの表示タブを切り替えたい

Posted at

ボタンをタップした時にTabBarの表示タブを切り替えたい!
という欲のままNavigationControllerとかstoryboardIDとか使ってごちゃごちゃ書いてみたけど出来ず。

結局これだけでした。1行かーい。

-(IBAction)buttonPushed {
   self.tabBarController.selectedIndex = 0;
}

数字はTabBarのインデックスで、左から0,1,2,3...と設定されています。

はい解決。

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4