以编程方式加载tabBarController

时间:2016-04-20 08:30:50

标签: ios swift uitabbarcontroller uistoryboard

目标是从函数加载tabBarController。我该怎么做呢?我从另一个答案中找到了这个代码,但它并没有按预期工作;一旦调用该函数,模拟就会关闭,没有错误或SIGABRTs(模拟真实的iPhone 6,而不是模拟器版本)

         var tbc = UITabBarController()      

         tbc = self.storyboard?.instantiateViewControllerWithIdentifier("tabBarController") as! UITabBarController            
         tbc.selectedIndex=1;
         self.presentViewController(tbc, animated: true, completion: {() -> Void in })

有什么想法吗?

0 个答案:

没有答案