In my app, there is a mapView that the user can add annotations to by pressing the screen. When the annotations are dropped onto the mapView, they are added to a mutable array in a singleton. The annotation views have a callout button that pushes a detailed view (it is called the PinViewController) onto the stack when it is pressed. My problem is that when the callout button is pressed, I want to pass the index of that annotation object to the detail view controller, so that I can get the address and date from that object. But whenever I press the callout button, no matter which annotation it is, it always passed the index of the first object in the array. I do not see what I am doing wrong, can someone help me out? Here is some code:
- (void)mapView:(MKMapView *)mapView
annotationView:(MKAnnotationView *)view
calloutAccessoryControlTapped:(UIControl *)control {
PinViewController *pvc = [[PinViewController alloc]init];
[[self navigationController]pushViewController:pvc animated:YES];
NSUInteger pinIndex = [[Data singleton].annotations indexOfObject:view.annotation];
[pvc setIdentifier:pinIndex];
}
This is from the detail view controller:
- (void)viewDidLoad {
[super viewDidLoad];
[self.labelView setFrame:CGRectMake(10, 260, 300, 230)];
[PinViewController roundView:self.labelView onCorner:UIRectCornerAllCorners radius:15];
[[self view]addSubview:self.labelView];
self.annotation = [[Data singleton].annotations objectAtIndex:self.identifier];
self.addressLabel.text = self.annotation.address;
self.dateLabel.text = self.annotation.subtitle;
}
Here is where the annotations are added to the array:
- (void)press:(UILongPressGestureRecognizer *)recognizer {
CGPoint touchPoint = [recognizer locationInView:self.worldView];
CLLocationCoordinate2D touchMapCoordinate = [self.worldView convertPoint:touchPoint toCoordinateFromView:self.worldView];
self.geocoder = [[CLGeocoder alloc]init];
CLLocation *location = [[CLLocation alloc]initWithCoordinate:touchMapCoordinate
altitude:CLLocationDistanceMax
horizontalAccuracy:kCLLocationAccuracyBest
verticalAccuracy:kCLLocationAccuracyBest
timestamp:[NSDate date]];
[self.geocoder reverseGeocodeLocation:location
completionHandler:^(NSArray *placemarks, NSError *error) {
//NSLog(@"reverseGeocoder:completionHandler: called");
if (error) {
NSLog(@"Geocoder failed with error: %@", error);
} else {
CLPlacemark *place = [placemarks objectAtIndex:0];
self.geocodedAddress = [NSString stringWithFormat:@"%@ %@, %@ %@", [place subThoroughfare], [place thoroughfare], [place locality], [place administrativeArea]];
if (UIGestureRecognizerStateBegan == [recognizer state]) {
self.addressPin = [[MapPoint alloc]initWithAddress:self.geocodedAddress
coordinate:touchMapCoordinate
title:self.geocodedAddress];
[[Data singleton].annotations addObject:self.addressPin];
[self.worldView addAnnotation:self.addressPin];
NSLog(@"The number of pins in the annotation array is: %u",[Data singleton].annotations.count);
}
}
}];
}
So basically, the index passed to the PinViewController is always 0, no matter which annotation it is. I don't understand why this code doesn't work.