Skip to content

Instantly share code, notes, and snippets.

@henning-jh
Last active June 7, 2019 20:38
Show Gist options
  • Save henning-jh/96bb5dd18551713ede356ca30978b957 to your computer and use it in GitHub Desktop.
Save henning-jh/96bb5dd18551713ede356ca30978b957 to your computer and use it in GitHub Desktop.
Sign In with Apple: notifications
let center = NotificationCenter.default
let name = NSNotification.Name.ASAuthorizationAppleIDProviderCredentialRevoked
let observer = center.addObserver(forName: name, object: nil, queue: nil) { (notification) in
// sign user out
// optionally guide them to sign in again
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment