Skip to content

Instantly share code, notes, and snippets.

@Arrlindii
Last active June 25, 2019 15:44
Show Gist options
  • Select an option

  • Save Arrlindii/64d52edd78e91ef49fd8d8a78a715ce1 to your computer and use it in GitHub Desktop.

Select an option

Save Arrlindii/64d52edd78e91ef49fd8d8a78a715ce1 to your computer and use it in GitHub Desktop.
NotificationCenter.default.publisher(for: .userUpdated).map { notification in
return notification.userInfo?["data"] as! Data
}
.decode(type: User.self, decoder: JSONDecoder())
.map { $0.name}
.sink { username in
self.usernameLabel.text = username
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment