gpt4 book ai didi

swift - 我们如何在 UITableView 中从本地 Realm 检索数据?

转载 作者:行者123 更新时间:2023-11-28 05:58:33 25 4
gpt4 key购买 nike

我下载了本地数据库中的所有数据。我希望当互联网不可用时自动检索本地。

for result in data {
self.dataSource.append(ModelData(value: result))
}
try! Global.APP_REALM?.write(){
Global.APP_REALM?.add(self.dataSource, update: true)
}

最佳答案

检查这个是否正常

if !Connectivity.isConnectedToInternet() {
dataSource.removeAll()
let Object = Global.APP_REALM?.objects(Hameotology.self)
for result in hameotologyObject! {
self.dataSource.append(ModelData(value: result))
}
tableViewTest.reloadData()
}

关于swift - 我们如何在 UITableView 中从本地 Realm 检索数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50630301/

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