Skip to content

Instantly share code, notes, and snippets.

@christiancabarrocas
Created October 7, 2020 10:59
Show Gist options
  • Save christiancabarrocas/f49e4f3b256ac6a381495bdadb1e20b3 to your computer and use it in GitHub Desktop.
Save christiancabarrocas/f49e4f3b256ac6a381495bdadb1e20b3 to your computer and use it in GitHub Desktop.
extension NotificationCenter {
class func add(_ notification: Notification, observer: Any) {
let selector = Selector(notification.name.rawValue)
NotificationCenter.default.addObserver(observer, selector: selector, name: notification.name, object: nil)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment