Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wh1pch81n/2644ae7a70d0925d25e9410f11007768 to your computer and use it in GitHub Desktop.
Save wh1pch81n/2644ae7a70d0925d25e9410f11007768 to your computer and use it in GitHub Desktop.
// 1
public struct SwiftyNotificationCenter {}
// ...
// extended somewhere else in your code base
// 2
extension SwiftyNotificationCenter {
static var buttonNotification = SwiftyNotification<String, String, Int>()
static var anotherNotification = SwiftyNotification<String, UIColor, Bool>()
static var theThingDidFinishNotification = SwiftyNotification<String, Void, Void>()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment