Skip to content

Instantly share code, notes, and snippets.

@muhlenXi
Last active November 23, 2018 08:27
Show Gist options
  • Save muhlenXi/bf2ecd7af60b7768ed99e5d09ae4e971 to your computer and use it in GitHub Desktop.
Save muhlenXi/bf2ecd7af60b7768ed99e5d09ae4e971 to your computer and use it in GitHub Desktop.
Get AppDelegate
extension AppDelegate {
/// 获取 App delegate
static func mainDelegate() -> AppDelegate? {
if let delegate = UIApplication.shared.delegate as? AppDelegate {
return delegate
}
return nil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment