我正在尝试保存用户的位置,但下面的代码返回错误。而不是创建一个新的关键" 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"];
}
}];
答案 0 :(得分:0)
想出来!我不得不去产品 - >方案 - >编辑方案 - >选项并添加默认位置。