我想在特定索引处提供UITabBarController
。我有什么:
let mainTabController = UIStoryboard(name: "Main", bundle: nil).instantiateViewControllerWithIdentifier("MainTabBarController")
self.presentViewController(mainTabController, animated: true, completion: nil)
我尝试将索引选择放在presentViewController
的完成处理程序中,但这不起作用
我也尝试向mainTabController
转发UITabBarController
,但这不允许我,让我相信这不是实现目标的正确方法。
有什么想法吗?