目标是从函数加载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 })
有什么想法吗?