Skip to content

Instantly share code, notes, and snippets.

@nyg
Created July 10, 2017 14:30
Show Gist options
  • Save nyg/45ac81abd94efc38b64fbc4cc964e5fa to your computer and use it in GitHub Desktop.
Save nyg/45ac81abd94efc38b64fbc4cc964e5fa to your computer and use it in GitHub Desktop.
Adding `shared` property to UIApplicationDelegate
// https://stackoverflow.com/a/45014628/5536516
extension UIApplicationDelegate {
static var shared: Self {
return UIApplication.shared.delegate! as! Self
}
}
/*
use like this:
let appDelegate = MyAppDelegate.shared // will be of type MyAppDelegate
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment