Last active
May 14, 2019 05:45
-
-
Save chauvincent/a35a8f08c7dd4fc183ab2bd5b2ba5e6d to your computer and use it in GitHub Desktop.
This file contains 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
NotificationCenter.default.addObserver( | |
forName: .SomethingToObserveNotification, | |
object: nil, | |
queue: .main) { [weak self] notification in | |
self?.handleNotification(notification) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment