我将用户发送到一个页面上的按钮点击。这个页面是一个UITableViewController。
现在如果用户点击一个单元格,我想把他推回到上一页。
我想到了self.performSegue("back")....但这似乎不是一个好主意。
正确的做法是什么?
我将用户发送到一个页面上的按钮点击。这个页面是一个UITableViewController。
现在如果用户点击一个单元格,我想把他推回到上一页。
我想到了self.performSegue("back")....但这似乎不是一个好主意。
正确的做法是什么?
当前回答
斯威夫特3:
如果你想回到之前的视图控制器
_ = navigationController?.popViewController(animated: true)
如果你想回到根视图控制器
_ = navigationController?.popToRootViewController(animated: true)
如果你没有使用导航控制器,请使用下面的代码。
self.dismiss(animated: true, completion: nil)
动画值可以根据您的要求设置。
其他回答
斯威夫特3,斯威夫特4
if movetoroot {
navigationController?.popToRootViewController(animated: true)
} else {
navigationController?.popViewController(animated: true)
}
navigationController是可选的,因为可能没有。
斯威夫特3:
如果你想回到之前的视图控制器
_ = navigationController?.popViewController(animated: true)
如果你想回到根视图控制器
_ = navigationController?.popToRootViewController(animated: true)
如果你没有使用导航控制器,请使用下面的代码。
self.dismiss(animated: true, completion: nil)
动画值可以根据您的要求设置。
我可以通过在导航控制器的“viewDidDisappear”中写代码重定向到根页面,
override func viewDidDisappear(_ animated: Bool) { self.navigationController ?。popToRootViewController(动画:真) }
如果Segue是“Show”或“Push”类型,那么你可以在UINavigationController的实例上调用“popViewController(animated: Bool)”。或者如果segue是present,那么调用UIViewController的实例"dismiss(animated: Bool, completion: (() -> Void)?
Swift 5及以上
案例1:与导航控制器一起使用
回到之前的视图控制器 self.navigationController ?。会被(动画:真) 回到根视图控制器 self.navigationController ?。popToRootViewController(动画:真)
案例2:使用present视图控制器
self.dismiss(animated: true, completion: nil)