Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save anuragajwani/3d9d90c63c5c1d7672abdae824836604 to your computer and use it in GitHub Desktop.
Save anuragajwani/3d9d90c63c5c1d7672abdae824836604 to your computer and use it in GitHub Desktop.
override func viewDidLoad() {
super.viewDidLoad()
self.tableView.register(UITableViewCell.self, forCellReuseIdentifier: "MovieCell")
self.dataSource = MoviesTableViewDataSource()
self.tableView.dataSource = self.dataSource
if let viewModel = self.viewModel {
self.bind(viewModel: viewModel)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment