gpt4 book ai didi

ios - 什么时候 .removeObserver ?

转载 作者:行者123 更新时间:2023-11-28 15:45:47 28 4
gpt4 key购买 nike

该应用程序应仅加载本地发布的帖子。使用 GeoFire 在 FB 中有一个分支“posts_location”。我想先填充“nearbyPostsKeys”数组,然后从 FB 的分支帖子中加载那些引用 REF_POSTS.

的特定帖子

viewDidLoad 中,我调用了一个具有完成处理程序(来自 FB 的数据)的函数。

这是接受完成处理程序的 func 声明:

func populateNearbyAndPassIt(completion:@escaping ([String])->()) {

let theGeoFire = GeoFire(firebaseRef: DB_BASE.child("posts_location"))
let location = CLLocation(latitude: Location.sharedInstance.currentLatitude, longitude: Location.sharedInstance.currentLongitude)
let circleQuery = theGeoFire!.query(at: location, withRadius: 6.0)

let newRefHandle: FIRDatabaseHandle = circleQuery!.observe(.keyEntered, with: { (key, location) in

self.nearbyPostsKeys.append(key!)
completion(self.nearbyPostsKeys)
})
}

下面是我在“viewDidLoad”中调用该函数的方式:

 populateNearbyAndPassIt{(nearbyPostsKeys) in

//populate 'posts' based on 'nearby..'

for key in nearbyPostsKeys {
let postRef = DataService.ds.REF_POSTS.queryOrdered(byChild: key)
postRef.observe(.value, with: { (snapshot) in
self.posts = []
if let snapshot = snapshot.children.allObjects as? [FIRDataSnapshot] {
for snap in snapshot {
if let postDict = snap.value as? Dictionary<String, AnyObject> {
let key = snap.key
let post = Post(postKey: key, postData: postDict)
self.posts.append(post)
}
}
}
self.posts.reverse()

print("Zhenya: here are all local posts data: \(self.posts)")
})
}
}

虽然在指定位置有 3 个帖子,但发生了什么:

.observe 被调用。 1 个帖子被检索并附加到 nearbyPostsKeys -> 完成处理程序被调用。并传递了包含 1 个元素的数组...然后循环继续。

我希望我可以等到“nearbyPostsKeys”数组被填充,然后才将其作为完成处理程序传递。

我还了解了 .removeObserver func 可以停止 .observe func 但无论我把它放在什么地方都是这样的:

    let newRefHandle: FIRDatabaseHandle = circleQuery!.observe(.keyEntered, with: { (key, location) in

self.nearbyPostsKeys.append(key!)
completion(self.nearbyPostsKeys)
})
circleQuery!.removeObserver(withFirebaseHandle: newRefHandle)

看起来 nearbyPostsKeys 根本没有传递。

请就更好的逻辑或如何使用 .removeObserver 提出建议。谢谢。

最佳答案

当你的 View Controller 取消初始化时,你应该移除观察者:

deinit {
circleQuery!.removeObserver(withFirebaseHandle: newRefHandle)
}

只需将 circleQuery 设为您的 View Controller 的属性即可。

关于ios - 什么时候 .removeObserver ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43079839/

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