Setting the default tab when using storyboards

前端 未结 12 811
执笔经年
执笔经年 2020-12-12 16:27

Can anyone please tell me how to set the default tab when using storyboards in iOS. I can\'t seem to figure out how to accomplish this.

Thank you

12条回答
  •  醉梦人生
    2020-12-12 16:43

    Provided you're navigating to your UITabBarController from e.g. a login screen it might be least pain to set the selection there:

            let tabs = self.storyboard?.instantiateViewController(withIdentifier: "tabs") as! UITabBarController
            tabs.selectedIndex = 1
            self.present(tabs, animated:false)
    

提交回复
热议问题