Skip to content

Instantly share code, notes, and snippets.

@max6363
Created January 20, 2022 12:36
Show Gist options
  • Save max6363/1746b7fbc61a2c57a99f5a220f162e2c to your computer and use it in GitHub Desktop.
Save max6363/1746b7fbc61a2c57a99f5a220f162e2c to your computer and use it in GitHub Desktop.
let eventPublisher = NotificationCenter.Publisher(center: .default, name: .newEvent, object: nil)
.map { (notification) -> String? in
return (notification.object as? Event)?.title ?? ""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment