座標を次のようにフォーマットする必要があります。
N 61° 14.5919'
E 23° 28.1751'
これで、私の座標は次のようになります。
61.145919
23.281751
私のコード:
- (void)locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *)newLocation
fromLocation:(CLLocation *)oldLocation
{
latitudeLabel.text = [NSString stringWithFormat:@"%f", newLocation.coordinate.latitude];
longitudeLabel.text = [NSString stringWithFormat:@"%f", newLocation.coordinate.longitude];
}