Skip to content

Instantly share code, notes, and snippets.

@ShanikaNishadhi
Created December 27, 2020 17:03
Show Gist options
  • Save ShanikaNishadhi/72bba9fdb1f076ad77c673955d3e8588 to your computer and use it in GitHub Desktop.
Save ShanikaNishadhi/72bba9fdb1f076ad77c673955d3e8588 to your computer and use it in GitHub Desktop.
//Called when a notification is delivered to a foreground app.
-(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler
{
completionHandler(UNNotificationPresentationOptionSound | UNNotificationPresentationOptionAlert | UNNotificationPresentationOptionBadge);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment