在swift中单击tableview单元格时打开一个新的TabBarController

时间:2016-03-17 11:05:28

标签: ios swift uitableview uitabbarcontroller segue

我是Swift的新手,如何在点击tableviewcell时打开一个新的TabBarController。等待您的回复

1 个答案:

答案 0 :(得分:1)

你有很多好的解决方案: 1)如果您正在使用故事板,则控制+从单元格拖动到print u"\u4E21\u56FD\u56FD\u6280\u9928"。 2)如果您想使用代码,并且您正在使用TabBarController尝试使用push to Nav执行此操作:

UINavigationController

3)如果你没有let VC1 = self.storyboard!.instantiateViewControllerWithIdentifier("MyViewController") as! ViewController self.navigationController!.pushViewController(VC1, animated: true) ,你可以像这样展示VC:

UINavigationController

4)如果你正在使用笔尖(之前有这个小改动):

let VC1 = ViewController() //change this to your class name
self.presentViewController(VC1, animated: true, completion: nil)

如果您需要更多资源,可以查看此链接here