我已经尝试了一切。无论使用带有 xcode 的实际设备或使用模拟器,我的 Geopoints 都不会保存。
if signUpError == nil {
PFGeoPoint.geoPointForCurrentLocationInBackground {
(geoPoint: PFGeoPoint?, error: NSError?) -> Void in
if error == nil {
PFUser.currentUser()!.setValue(geoPoint, forKey: "location")
}
}
我不知道该怎么办。