在swift2.x中 有这个方法
self.navigationController?.popViewController(animated: true)
但是在swift3 就会出现这个警告
解决办法为:
_ = self.navigationController?.popViewController(animated: true)
Swift 3 大的改动之一就是所有带有返回值的函数如果没有变量去接收返回值,就会报warning。
popViewController和popToRootViewController基本上人人都用,但是有多少人知道这两个函数其实是有返回值的。
看一下官方的解释吧
open func popViewController(animated: Bool) -> UIViewController? // Returns the popped controller.
open func popToViewController(_ viewController: UIViewController, animated: Bool) -> [UIViewController]?
// 官方解释
// Pops view controllers until the one specified is on top. Returns the popped controllers.