Created
January 26, 2015 14:41
-
-
Save chriseidhof/9bf7280063db3a249fbe to your computer and use it in GitHub Desktop.
Typed Notifications
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
import Foundation | |
class Box<T> { | |
let unbox: T | |
init(_ value: T) { self.unbox = value } | |
} | |
struct Notification<A> { | |
let name: String | |
} | |
func postNotification<A>(note: Notification<A>, value: A) { | |
let userInfo = ["value": Box(value)] | |
NSNotificationCenter.defaultCenter().postNotificationName(note.name, object: nil, userInfo: userInfo) | |
} | |
class NotificationObserver { | |
let observer: NSObjectProtocol | |
init<A>(notification: Notification<A>, block aBlock: A -> ()) { | |
observer = NSNotificationCenter.defaultCenter().addObserverForName(notification.name, object: nil, queue: nil) { note in | |
if let value = (note.userInfo?["value"] as? Box<A>)?.unbox { | |
aBlock(value) | |
} else { | |
assert(false, "Couldn't understand user info") | |
} | |
} | |
} | |
deinit { | |
NSNotificationCenter.defaultCenter().removeObserver(observer) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good one! Did you write code like this for KVO?