iOS Swift: 不使用 RxCocoa 的 TableView 数据源
iOS Swift: TableView Data Source without using RxCocoa
晚上,在我的应用程序中,我不想使用 RxCocoa,我正在尝试符合 tableview 数据源和委托,但我遇到了一些问题。
如果不使用 RxCocoa 或 RxDataSource,我找不到任何指南。
在我的 ViewModel 中有一个 lazy computed var myData: Observable<[MyData]>
,但我不知道如何获取行数。
我正在考虑将可观察对象转换为 Bheaviour Subject 然后获取值,但我真的不知道哪个是最好的说法
你需要创建一个class既符合UITableViewDataSource又符合Observer。一个快速而肮脏的版本看起来像这样:
class DataSource: NSObject, UITableViewDataSource, ObserverType {
init(tableView: UITableView) {
self.tableView = tableView
super.init()
tableView.dataSource = self
}
func on(_ event: Event<[MyData]>) {
switch event {
case .next(let newData):
data = newData
tableView.reloadData()
case .error(let error):
print("there was an error: \(error)")
case .completed:
data = []
tableView.reloadData()
}
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return data.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let item = data[indexPath.row]
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
// configure cell with item
return cell
}
let tableView: UITableView
var data: [MyData] = []
}
创建此 class 的实例作为视图控制器的 属性。
将您的 myData
绑定到它,例如:
self.myDataSource = DataSource(tableView: self.tableView)
self.myData
.bind(to: self.myDataSource)
.disposed(by: self.bag)
(我把所有的 self
放在上面是为了让事情更明确。)
您可以将其细化到可以有效地重新实现 RxCoca 的数据源的程度,但这有什么意义呢?
晚上,在我的应用程序中,我不想使用 RxCocoa,我正在尝试符合 tableview 数据源和委托,但我遇到了一些问题。
如果不使用 RxCocoa 或 RxDataSource,我找不到任何指南。
在我的 ViewModel 中有一个 lazy computed var myData: Observable<[MyData]>
,但我不知道如何获取行数。
我正在考虑将可观察对象转换为 Bheaviour Subject 然后获取值,但我真的不知道哪个是最好的说法
你需要创建一个class既符合UITableViewDataSource又符合Observer。一个快速而肮脏的版本看起来像这样:
class DataSource: NSObject, UITableViewDataSource, ObserverType {
init(tableView: UITableView) {
self.tableView = tableView
super.init()
tableView.dataSource = self
}
func on(_ event: Event<[MyData]>) {
switch event {
case .next(let newData):
data = newData
tableView.reloadData()
case .error(let error):
print("there was an error: \(error)")
case .completed:
data = []
tableView.reloadData()
}
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return data.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let item = data[indexPath.row]
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
// configure cell with item
return cell
}
let tableView: UITableView
var data: [MyData] = []
}
创建此 class 的实例作为视图控制器的 属性。
将您的 myData
绑定到它,例如:
self.myDataSource = DataSource(tableView: self.tableView)
self.myData
.bind(to: self.myDataSource)
.disposed(by: self.bag)
(我把所有的 self
放在上面是为了让事情更明确。)
您可以将其细化到可以有效地重新实现 RxCoca 的数据源的程度,但这有什么意义呢?