我试图解散一个ViewController在一个IBAction调用遣散ViewController

  @IBAction func cancel(sender: AnyObject) {
    self.dismissViewControllerAnimated(false, completion: nil)
    println("cancel")
}

@IBAction func done(sender: AnyObject) {
    self.dismissViewControllerAnimated(false, completion: nil)
    println("done")
}

我可以在控制台输出中看到println消息,但ViewController从未被解散。有什么问题吗?


当前回答

苹果文档:

呈现视图控制器负责解散它呈现的视图控制器

因此,仅仅从它自身调用dismiss方法是一个不好的做法。

如果你是模态呈现,你应该做的是:

presentingViewController?.dismiss(animated: true, completion: nil)

其他回答

@IBAction func back(_ sender: Any) {
        self.dismiss(animated: false, completion: nil)
    }

在Swift 3.0中

如果你想解散一个呈现的视图控制器

self.dismiss(animated: true, completion: nil)

如果你想解散你的视图控制器使用这个。这段代码是用按钮动作来编写的,以消除VC

  @IBAction func cancel(sender: AnyObject) {
   dismiss(animated: true, completion: nil)
  }

因为你使用了push presenting viewController,因此,你可以使用

self.dismiss(animated: false, completion: nil)

如果你正在以模态方式呈现一个ViewController,并且想要回到根ViewController,在你回到根ViewController之前,注意解散这个模态呈现的ViewController,否则这个ViewController将不会从内存中移除,并导致内存泄漏。