I want to bring up a confirmation window when moving forward with the back button But you can get back button events, but you can’t stop moving forward.
override func viewWillDisappear(_ animated: Bool) {
super.viewWillDisappear(animated)
if self.isMovingFromParent {
}
}
What should I do?