查询NearGeoPoint返回空对象

时间:2015-09-06 23:18:40

标签: ios swift parse-platform

我正在尝试查找当前登录用户附近的用户,但不知何故,结果对象不会返回任何用户。

var currentUserGeoPoint = PFUser.currentUser()![“currentLocation”] as! PFGeoPoint

var query = PFQuery(className:"User")
    query.whereKey("currentLocation", nearGeoPoint: currentUserGeoPoint, withinKilometers: 100)
    query.findObjectsInBackgroundWithBlock {
        (objects, error) -> Void in
        if (error == nil) {
            println(objects)
        }else {
            println(error?.userInfo)
        }
}

控制台返回:Optional([])

这是我的用户表: enter image description here

如您所见,我的User类设置为public。 (我知道这不是最好的做法) enter image description here

1 个答案:

答案 0 :(得分:0)

班级名称应为_User。

public class aClass<T extends Comparable<? super T>> implements Queue<T> {}