Skip to content

Instantly share code, notes, and snippets.

@lawreyios
Created October 4, 2019 14:40
Show Gist options
  • Save lawreyios/c37ec7b86cd89523073682adf79b8a69 to your computer and use it in GitHub Desktop.
Save lawreyios/c37ec7b86cd89523073682adf79b8a69 to your computer and use it in GitHub Desktop.
override func viewDidLoad() {
super.viewDidLoad()
people.bind(to: tableView.rx.items(cellIdentifier: "PersonCell")) { row, model, cell in
cell.textLabel?.text = "\(model.name) from \(model.title)"
}.disposed(by: disposeBag)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment