我有一个运行了很长时间的 GeoFire 查询。突然,当我将我的 podfile 更新为新的 firebase 规范时,现在出现以下错误:在我所有使用 KeyEntered 的查询中,类型“GFEventType”没有成员“KeyEntered”。
下面是我正在运行的查询之一的示例。
circleQuery.observeEventType(.KeyEntered, withBlock: { (key: String!, location: CLLocation!) in
if key == self.ref.authData.uid{
print("Found myself! Omitted.")
}else{
self.userKeys.append(key)
self.userLocations.append(location)
print(self.userKeys)
print(self.userLocations)
}
}) //End userQuery
恐怕我的 GeoFire 安装严重搞砸了,我该如何解决?
提前致谢。