I have tried everything. No matter what my Geopoints will not save when using an actual device with xcode or using the simulator.
if signUpError == nil {
PFGeoPoint.geoPointForCurrentLocationInBackground {
(geoPoint: PFGeoPoint?, error: NSError?) -> Void in
if error == nil {
PFUser.currentUser()!.setValue(geoPoint, forKey: "location")
}
}
I am not sure what to do.
That is because you are setting it but you are not saving the value you just set: