Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bizz84/cfb9dd4d033ecff490a449f3a0a85d2c to your computer and use it in GitHub Desktop.
Save bizz84/cfb9dd4d033ecff490a449f3a0a85d2c to your computer and use it in GitHub Desktop.
class DestinationViewController: UIViewController {
var viewModel: ViewModel!
@IBOutlet var label: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
// viewModel should be set by prepareForSegue. It it's not,
// the app will crash and can be easily fixed.
label.text = viewModel.text
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment