Switching from a custom leader to another in MKMap

I followed this tutorial to show custom annotation leader bubbles. It works great if you have only one annotation with custom annotation.

However, I need to have more on my map, and I am having trouble switching from user annotation to another. If I click on another contact when you have already selected one and want a new custom annotation view to appear, it does not work. First I have to click somewhere else by chance on the map. I think I have something to work on in the DidDeselect method, but I'm not sure ...

How would you solve this problem?

- (void)mapView:(MKMapView *)mapView didDeselectAnnotationView:(MKAnnotationView *)view {
    if (self.calloutAnnotation && [view.annotation isKindOfClass:[MyHomeAnnotation class]]) {
        [self.mapView removeAnnotation: self.calloutAnnotation];
    }
}
- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view {
     if ([view.annotation isKindOfClass:[MyHomeAnnotation class]]) { 
        if (self.calloutAnnotation == nil) {
            self.calloutAnnotation = [[CalloutMapAnnotation alloc] initWithLatitude:view.annotation.coordinate.latitude
                                                                       andLongitude:view.annotation.coordinate.longitude];
        } else {
            self.calloutAnnotation.latitude = view.annotation.coordinate.latitude;
            self.calloutAnnotation.longitude = view.annotation.coordinate.longitude;
        }
        [self.mapView addAnnotation:self.calloutAnnotation];
        self.selectedAnnotationView = view;
    }
}



- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
    if (annotation == self.calloutAnnotation) {
        CalloutMapAnnotationView *calloutMapAnnotationView = (CalloutMapAnnotationView *)[self.mapView dequeueReusableAnnotationViewWithIdentifier:@"CalloutAnnotation"];
        if (!calloutMapAnnotationView) {
            calloutMapAnnotationView = [[[CalloutMapAnnotationView alloc] initWithAnnotation:annotation 
                                                                             reuseIdentifier:@"CalloutAnnotation"] autorelease];
            calloutMapAnnotationView.contentHeight = 78.0f;
            UIImage *asynchronyLogo = [UIImage imageNamed:@"cykelrรธd1.png"];
            UIImageView *asynchronyLogoView = [[[UIImageView alloc] initWithImage:asynchronyLogo] autorelease];
            asynchronyLogoView.frame = CGRectMake(5, 2, asynchronyLogoView.frame.size.width, asynchronyLogoView.frame.size.height);
            [calloutMapAnnotationView.contentView addSubview:asynchronyLogoView];
        }
        calloutMapAnnotationView.parentAnnotationView = self.selectedAnnotationView;
        calloutMapAnnotationView.mapView = self.mapView;
        return calloutMapAnnotationView;
    } else if ([annotation isKindOfClass:[MyHomeAnnotation class]]) {
        MKPinAnnotationView *annotationView = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation 
                                                                               reuseIdentifier:@"CustomAnnotation"] autorelease];
        annotationView.canShowCallout = NO;
        annotationView.pinColor = MKPinAnnotationColorGreen;
        return annotationView;
    }else if ([annotation isKindOfClass:[MyMapAnnotation class]]) {
        MKPinAnnotationView *annotationView = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation 
                                                                               reuseIdentifier:@"NormalAnnotation"] autorelease];
        annotationView.canShowCallout = YES;
        annotationView.pinColor = MKPinAnnotationColorPurple;
        return annotationView;
    }


    return nil;
}
+3
source share
1

, , , mapview. , .

- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view {
   NSLog(@"didSelectAnnotationView:%f", view.annotation.coordinate.latitude);

   if (self.calloutAnnotation == nil) {

      CalloutMapAnnotation *tempCallout = [[CalloutMapAnnotation alloc] 
                                         initWithLatitude:view.annotation.coordinate.latitude              
                                         andLongitude:view.annotation.coordinate.longitude];

      self.calloutAnnotation = tempCallout;
      [tempCallout release];

  } else {

      //remove callout when callout already exist
      [self.myMapView removeAnnotation: self.calloutAnnotation];
      self.selectedAnnotationView = nil;

      //reposition
      self.calloutAnnotation.latitude = view.annotation.coordinate.latitude;
      self.calloutAnnotation.longitude = view.annotation.coordinate.longitude;

  }

  [self.myMapView addAnnotation:self.calloutAnnotation];
  self.selectedAnnotationView = view;
}

- (void)mapView:(MKMapView *)mapView didDeselectAnnotationView:(MKAnnotationView *)view   {

  NSLog(@"didDeselectAnnotationView:%f", view.annotation.coordinate.latitude);

  //use the latitude and longitude to avoid remove twice

  if (self.calloutAnnotation &&
    self.selectedAnnotationView.annotation.coordinate.latitude == view.annotation.coordinate.latitude &&
    self.selectedAnnotationView.annotation.coordinate.longitude == view.annotation.coordinate.longitude
    ) {

      [self.myMapView removeAnnotation: self.calloutAnnotation];
      self.selectedAnnotationView = nil;
      self.calloutAnnotation.isAddtoMap = NO;
  }

}
+4

Source: https://habr.com/ru/post/1784711/


All Articles