Skip to content

Instantly share code, notes, and snippets.

@lamprosg
Created November 4, 2019 12:10
Show Gist options
  • Select an option

  • Save lamprosg/18a0f74cadcb3bc4ca000e28bb7a866c to your computer and use it in GitHub Desktop.

Select an option

Save lamprosg/18a0f74cadcb3bc4ca000e28bb7a866c to your computer and use it in GitHub Desktop.
(iOS) Back button event
override func viewWillDisappear(_ animated: Bool) {
super.viewWillDisappear(animated)
guard let nav = self.navigationController,
nav.viewControllers.contains(self) else {
self.delegate?.cancelledl()
return
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment