swift - 我想回到之前在TabBarController中使用的viewController

时间:2015-11-06 07:49:56

标签: swift uitabbarcontroller

我想回到注册后在TabBarController中的用户viewController,但是当我回到tabBarController中的控制器时,底部没有tabBar。

这是我的代码

 let MyPage = self.storyboard?.instantiateViewControllerWithIdentifier("MyViewController")

 presentViewController(MyPage!, animated: true, completion: nil)

MyViewController是TabBarController中的第五个视图控制器

请告诉我如何去tabBarController中的视图控制器,非常感谢!

1 个答案:

答案 0 :(得分:0)

使用dismissViewControllerAnimated函数。而不是使用presentViewController函数。

替换

self.presentViewController(MyPage, animated: true, completion: nil)

self.dismissViewControllerAnimated(true, completion: nil)