Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thomassnielsen/d12477848861a4315254 to your computer and use it in GitHub Desktop.
Save thomassnielsen/d12477848861a4315254 to your computer and use it in GitHub Desktop.
import UIKit
extension UIViewController {
@IBAction func dismiss(sender: AnyObject?) {
if let nc = self.navigationController {
nc.popViewControllerAnimated(true)
} else {
self.dismissViewControllerAnimated(true, completion: nil)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment