How do I set selected tab in UITabBarController using StoryBoard?

前端 未结 10 1451
一整个雨季
一整个雨季 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 01:06

    Swift 5.3

    Let tabBar be an instance of UITabBarController then :

    tabBar.selectedViewController = tabBar.viewControllers![2]
    

    Note:
    Instead of 2, put your desired viewController's index

提交回复
热议问题