gpt4 book ai didi

iOS: Realm 订阅状态从未更新

转载 作者:行者123 更新时间:2023-11-29 05:41:51 24 4
gpt4 key购买 nike

我遇到了 Realm 订阅观察者的问题。从服务器接收数据后状态不会更新。我正在使用下面的代码:

        let realm = try! Realm(configuration: try configuration(url: realmURL))
let results: Results<Object> = realm!.objects(Object.self)
let subscription = results.subscribe(named: "objects")


subscription.observe(\.state, options: .initial) { state in
print("Sync State Objects: \(state)")}

我得到的唯一状态是“.creating”,之后就没有任何更新了。我希望“.completed”能够跟踪订阅获取数据的进度。值得一提的是,我已经尝试删除这些选项,但在这种情况下,甚至不会触发“.creating”。

谢谢

最佳答案

我将用一些部分代码来回答,因为它将提供一些指导来使其正常工作。假设我们有一个 PersonClass、一个 tableView 和一个名为 personResults 的 tableView 数据源。这是在这里输入的,所以不要只是复制粘贴,因为我确信存在一些构建错误。

在我们的 View Controller 中...

class TestViewController: UIViewController {
let realm: Realm
let personResults: Results<Person>
var notificationToken: NotificationToken?
var subscriptionToken: NotificationToken?
var subscription: SyncSubscription<Project>!

然后当我们想要开始同步我们的 personResults

subscription = personResults.subscribe()
subscriptionToken = subscription.observe(\.state, options: .initial) { state in
if state == .complete {
print("Subscription Complete")
} else {
print("Subscription State: \(state)")
}
}

notificationToken = personResults.observe { [weak self] (changes) in
guard let tableView = self?.tableView else { return }
switch changes {
case .initial:
// Results are now populated and can be accessed without blocking the UI
print("observe: initial load complete")
tableView.reloadData()
case .update(_, let deletions, let insertions, let modifications):
// Query results have changed, so apply them to the UITableView
tableView.beginUpdates()
tableView.insertRows(at: insertions.map({ IndexPath(row: $0, section: 0) }),
with: .automatic)
tableView.deleteRows(at: deletions.map({ IndexPath(row: $0, section: 0)}),
with: .automatic)
tableView.reloadRows(at: modifications.map({ IndexPath(row: $0, section: 0) }),
with: .automatic)
tableView.endUpdates()
case .error(let error):
// An error occurred while opening the Realm file on the background worker thread
fatalError("\(error)")
}
}

关于iOS: Realm 订阅状态从未更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56478281/

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