Skip to content

Instantly share code, notes, and snippets.

@onmyway133
Created July 4, 2018 08:49
Show Gist options
  • Save onmyway133/5ed94dde82fbe7598aa58eb07797415e to your computer and use it in GitHub Desktop.
Save onmyway133/5ed94dde82fbe7598aa58eb07797415e to your computer and use it in GitHub Desktop.
class ProfileController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let viewModel = ViewModel(user: user)
nameLabel.text = viewModel.name
birthdayLabel.text = viewModel.birthdayString
salaryLabel.text = viewModel.salary
piLabel.text = viewModel.millionthDigitOfPi
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment