We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2b4b01 commit 73f41c3Copy full SHA for 73f41c3
README.md
@@ -35,8 +35,8 @@ RxSwift helps alleviate some of the burden with a simple data binding mechanism:
35
36
```swift
37
let data = Observable<[String]>.just(["first element", "second element", "third element"])
38
-
39
-data.bindTo(tableView.rx.items(cellIdentifier: "Cell")) { index, model, cell in
+
+data.bind(to: tableView.rx.items(cellIdentifier: "Cell")) { index, model, cell in
40
cell.textLabel?.text = model
41
}
42
.disposed(by: disposeBag)
0 commit comments