是否可以使用 Firebase 的 GeoFire 检索特定范围内的所有键?
我知道您可以接收地理查询事件,例如:输入键、退出键或移动键,但是我目前正在寻找更像 FEventTypeValue 的东西(针对特定地理区域读取一次值),因为我的 map 对象不动。
在文档中找不到任何内容:https://github.com/firebase/geofire-objc
Best Answer-推荐答案 strong>
您可以使用输入键事件首先将查询的所有键保存在字典中,然后使用就绪事件确定何时添加了所有键:
NSMutableDictionary *allKeys = [NSMutableDictionary dictionary];
[query observeEventType:GFEventTypeKeyEntered withBlock:^(NSString *key, CLLocation *location) {
[allKeys setObject:location forKey:key];
}];
[query observeReadyWithBlock:^{
// Create an immutable copy of the keys in the query
NSDictionary *valueData = [allKeys copy];
NSLog(@"All keys within a query: %@", valueData);
}];
之后别忘了清理你的听众。
关于ios - 在 GeoFire 中获取特定范围内的所有对象,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/28943239/
|