Skip to content

Instantly share code, notes, and snippets.

@GxocT
Created July 17, 2018 11:22
Show Gist options
  • Save GxocT/b3ffac798b657093167086ef5b651314 to your computer and use it in GitHub Desktop.
Save GxocT/b3ffac798b657093167086ef5b651314 to your computer and use it in GitHub Desktop.
extension AppDelegate: UNUserNotificationCenterDelegate {
func userNotificationCenter(_ center: UNUserNotificationCenter, openSettingsFor notification: UNNotification?) {
openSettings()
}
func openSettings() {
let storyboard = UIStoryboard(name: "Settings", bundle: nil)
let settings = storyboard.instantiateViewController(withIdentifier: "Settings")
window?.rootViewController = settings
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment