不使用Parse为用户保存geopoint

时间:2015-01-18 08:19:47

标签: objective-c parse-platform

我正在尝试保存用户的位置,但下面的代码返回错误。而不是创建一个新的关键" currentLocation"它会返回错误并创建一个密钥"你好。"为什么会这样?

[PFGeoPoint geoPointForCurrentLocationInBackground:^(PFGeoPoint *geoPoint, NSError *error) {
            if (!error) {
                NSLog(@"User is currently at %f, %f", geoPoint.latitude, geoPoint.longitude);
                [[PFUser currentUser] setObject:geoPoint forKey:@"currentLocation"];
                [[PFUser currentUser] saveInBackground];
            }
            else {
                [[PFUser currentUser] setObject:hello forKey:@"hello"];
            }
        }];

1 个答案:

答案 0 :(得分:0)

想出来!我不得不去产品 - >方案 - >编辑方案 - >选项并添加默认位置。