我想回到注册后在TabBarController中的用户viewController,但是当我回到tabBarController中的控制器时,底部没有tabBar。
这是我的代码
let MyPage = self.storyboard?.instantiateViewControllerWithIdentifier("MyViewController")
presentViewController(MyPage!, animated: true, completion: nil)
MyViewController是TabBarController中的第五个视图控制器
请告诉我如何去tabBarController中的视图控制器,非常感谢!
答案 0 :(得分:0)
使用dismissViewControllerAnimated函数。而不是使用presentViewController函数。
替换
self.presentViewController(MyPage, animated: true, completion: nil)
到
self.dismissViewControllerAnimated(true, completion: nil)