post(name:object:)
Creates a notification with a given name and sender and posts it to the notification center.
Declaration
func post(name aName: NSNotification.Name, object anObject: Any?)Parameters
- aName:
The name of the notification.
- anObject:
The object posting the notification.
Discussion
This is a convenience method for calling post(name:object:userInfo:) and passing nil to aUserInfo.