快速后退按钮不起作用

时间:2016-11-12 07:35:13

标签: ios swift

我正在尝试在新的ViewController中添加后退按钮。

我正在使用show segue从tabbar视图打开此视图控制器。

我在顶部实现了项目栏,并为viewcontoller添加了操作。

self.dismissViewControllerAnimated(true, completion: nil);

并在其中添加此代码

故事板 https://drive.google.com/file/d/0B93rd-pg4by8Q0tNWXMwTXlVanM/view

3 个答案:

答案 0 :(得分:4)

如果您使用的是swift 3,则必须将self.dismissViewControllerAnimated(true, completion: nil); 替换为self.dismiss(animated: true, completion: nil)

答案 1 :(得分:0)

self.navigationController?.popViewController(animated: true)

答案 2 :(得分:0)

您必须确定是在推视还是展示视图。如果您正在推动视图,则必须通过添加此行

来弹出它

self.navigationController?.popViewController(animated:true)