Skip to content

Instantly share code, notes, and snippets.

@groue
Created March 30, 2016 06:16
Show Gist options
  • Save groue/cd86a179c99b90438e607e8f65bf879c to your computer and use it in GitHub Desktop.
Save groue/cd86a179c99b90438e607e8f65bf879c to your computer and use it in GitHub Desktop.
extension PersonEditionViewController {
func applyChanges() {
person.name = nameTextField.text
person.score = scoreTextField.text.flatMap { Int($0) } ?? 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment