Last active
December 31, 2016 03:55
-
-
Save wh1pch81n/2644ae7a70d0925d25e9410f11007768 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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