Skip to content

Instantly share code, notes, and snippets.

@janodev
Created August 16, 2016 12:50
Show Gist options
  • Save janodev/bd3a5de0d16fcdd4662d33289c251ea3 to your computer and use it in GitHub Desktop.
Save janodev/bd3a5de0d16fcdd4662d33289c251ea3 to your computer and use it in GitHub Desktop.
Set the category of a local notification
override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler:(UNNotificationContent) -> Void)
{
content = (request.content.mutableCopy() as? UNMutableNotificationContent)
content?.categoryIdentifier = "DylanOrDermotCategory"
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment