Skip to content

Instantly share code, notes, and snippets.

@foxicode
Created October 13, 2020 17:30
Show Gist options
  • Select an option

  • Save foxicode/c93b67be4bf16e8cc5356f2b463308b3 to your computer and use it in GitHub Desktop.

Select an option

Save foxicode/c93b67be4bf16e8cc5356f2b463308b3 to your computer and use it in GitHub Desktop.
Universal go-back function
import UIKit
extension UIViewController {
@IBAction func goBack() {
if let nc = navigationController,
nc.viewControllers.count >= 2 {
nc.popViewController(animated: true)
} else {
dismiss(animated: true, completion: nil)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment