Skip to content

Instantly share code, notes, and snippets.

@bobleesj
Created December 17, 2016 12:48
Show Gist options
  • Save bobleesj/94cbaf33e68b309388dec9a6b9b00717 to your computer and use it in GitHub Desktop.
Save bobleesj/94cbaf33e68b309388dec9a6b9b00717 to your computer and use it in GitHub Desktop.
func catchNotification(notification:Notification) -> Void {
guard let name = notification.userInfo!["name"] else { return }
FirstVCLabel.text = "My name, \(name) has been passed! 😄"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment