How do I set selected tab in UITabBarController using StoryBoard?

前端 未结 10 1504
一整个雨季
一整个雨季 2020-12-31 00:38

How can I switch to some tab in UITabBarController using StoryBoard? I have tried the code below but without success (the tab is not selected):

         


        
10条回答
  •  無奈伤痛
    2020-12-31 00:58

    *Swift Comment - 18 months later if you convert Yanchi's solution into Swift in your appDelegate you'll get the expected result. The Swift translation is:

    let tabBar: UITabBarController = self.window?.rootViewController as! UITabBarController
    
    tabBar.selectedIndex = 1
    

提交回复
热议问题