Created
January 18, 2021 15:06
-
-
Save mohsinbmwm3/2ba367d74ed3090cde00ad164f08d58a to your computer and use it in GitHub Desktop.
NSNotification extension idea.
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
import UIKit | |
extension NSNotification.Name { | |
static var userLoggedInSuccessfully: NSNotification.Name { NSNotification.Name(rawValue: "userLoggedInSuccessfully") } | |
static var userLoggedOutSuccessfully: NSNotification.Name { NSNotification.Name(rawValue: "userLoggedOutSuccessfully") } | |
static var appEnteredInForeground: NSNotification.Name { NSNotification.Name(rawValue: "appEnteredInForeground") } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment