Skip to content

Instantly share code, notes, and snippets.

@jarsen
Created August 29, 2016 14:37
Show Gist options
  • Select an option

  • Save jarsen/241de4df94dd4f110583b54f33294834 to your computer and use it in GitHub Desktop.

Select an option

Save jarsen/241de4df94dd4f110583b54f33294834 to your computer and use it in GitHub Desktop.
func update(with state: State) {
guard let user = state.user else { return }
firstNameLabel.text = user.firstName
lastNameLabel.text = user.lastName
ageLabel.text = String(user.age)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment