Juste une petite question sur Core Location, j'essaie de calculer la distance entre deux points, le code est ci-dessous :
-(void)locationChange:(CLLocation *)newLocation:(CLLocation *)oldLocation
{
// Configure the new event with information from the location.
CLLocationCoordinate2D newCoordinate = [newLocation coordinate];
CLLocationCoordinate2D oldCoordinate = [oldLocation coordinate];
CLLocationDistance kilometers = [newCoordinate distanceFromLocation:oldCoordinate] / 1000; // Error ocurring here.
CLLocationDistance meters = [newCoordinate distanceFromLocation:oldCoordinate]; // Error ocurring here.
}
J'obtiens l'erreur suivante sur les deux dernières lignes :
error : cannot convert to a pointer type
J'ai fait des recherches sur Google, mais je ne trouve rien.