Skip to content

Instantly share code, notes, and snippets.

@mattrobmattrob
Created July 12, 2017 18:58
Show Gist options
  • Save mattrobmattrob/7db5c74a76c0f23ba2f031208046441e to your computer and use it in GitHub Desktop.
Save mattrobmattrob/7db5c74a76c0f23ba2f031208046441e to your computer and use it in GitHub Desktop.
Strava Apple Watch Blog - Notifications
__block BOOL areNotificationsAuthorized = NO;
[UNUserNotificationCenter getNotificationSettingsWithCompletionHandler:^(UNNotificationSettings * _Nonnull settings) {
areNotificationsAuthorized = UNAuthorizationStatusAuthorized == settings.authorizationStatus;
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment