ボタンをタップするたびにCLLocationManagerを使用して現在の位置を取得したいのですが、常に同じ座標を取得します:(
- (void)GetCoord
{
self.currentLocation = nil;
self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
self.locationManager.desiredAccuracy = kCLLocationAccuracyBest;
[self.locationManager startUpdatingLocation];
}
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
self.currentLocation = newLocation;
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"Megerősítés"
message:[NSString stringWithFormat:@"%f ::: %f", newLocation.coordinate.latitude, newLocation.coordinate.longitude]
delegate:self
cancelButtonTitle:@"Nem"
otherButtonTitles:nil
];
[alert show];
[self.locationManager stopUpdatingLocation];
}