I have a problem.
I have a mapView, and I have many annotations in my mapView.
how to know the indexPath
that I select the annotation.
I find the function didSelectAnnotationView
but I don't know how to use it.
This is my code:
BOOL firstLocationReceived;
-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray<CLLocation *> *)locations
{
CLLocation *currentLocation = locations.lastObject; //current location
if(firstLocationReceived == NO)
{
MKCoordinateRegion region = _shopMapView.region;
region.center = currentLocation.coordinate;
region.span.latitudeDelta = 0.05;
region.span.longitudeDelta = 0.05;
[_restaurantMapView setRegion:region animated:true];
//Add Annotation
for (int i = 0; i < self.items.count ; i++)
{
MKPointAnnotation *annotation = [MKPointAnnotation new];
NSDictionary *item = self.items[i];
CLLocationDegrees latitude = [item[@"latitude"] doubleValue];
CLLocationDegrees longitude = [item[@"longitude"] doubleValue];
annotation.coordinate = CLLocationCoordinate2DMake(latitude, longitude);
annotation.title = item[@"name"];
annotation.subtitle = item[@"address"];
[_shopMapView addAnnotation:annotation];
firstLocationReceived == YES;
}
}
}
-(MKAnnotationView*)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
{
if (annotation == mapView.userLocation)
{
return nil;
}
NSString *identifier = @"shop";
MKAnnotationView *result = [mapView dequeueReusableAnnotationViewWithIdentifier:identifier];
if(result ==nil)
{
result = [[MKAnnotationView alloc]initWithAnnotation:annotation reuseIdentifier:identifier];
}
else
{
result.annotation = annotation;
}
result.canShowCallout = true;
UIImage *annotationViewImage = [UIImage imageNamed:@"point.png"];
result.image = annotationViewImage;
result.leftCalloutAccessoryView = [[UIImageView alloc]initWithImage:annotationViewImage];
UIButton *button = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
[button addTarget:self action:@selector(buttonTapped:) forControlEvents:UIControlEventTouchUpInside];
result.rightCalloutAccessoryView = button;
return result;
}
Thanks!