gpt4 book ai didi

iOS swift : TableView Data Source without using RxCocoa

转载 作者:行者123 更新时间:2023-11-28 13:54:48 24 4
gpt4 key购买 nike

晚上,在我的应用程序中,我不想使用 RxCocoa,我正在尝试符合 tableview 数据源和委托(delegate),但我遇到了一些问题。

如果不使用 RxCocoa 或 RxDataSource,我找不到任何指南。

在我的 ViewModel 中有一个 lazy computed var myData: Observable<[MyData]>而且我不知道如何获取行数。

我正在考虑将可观察对象转换为 Bheaviour Subject 然后获取值,但我真的不知道哪个是最好的说法

最佳答案

你需要创建一个类,既要符合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] = []
}

创建此类的实例作为 View Controller 的属性。将您的 myData 绑定(bind)到它,例如:

self.myDataSource = DataSource(tableView: self.tableView)
self.myData
.bind(to: self.myDataSource)
.disposed(by: self.bag)

(我把所有的 self 放在上面是为了让事情更明确。)

您可以将其细化到可以有效地重新实现 RxCoca 的数据源的程度,但这有什么意义呢?

关于iOS swift : TableView Data Source without using RxCocoa,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54030659/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com