J'ai un MKMapView
mis en œuvre avec ces lignes de code source (mon emplacement est une balle bleue, les autres ses sont des broches violettes):MKMapView -> afficher un bouton pour mon emplacement
- (MKAnnotationView *)mapView:(MKMapView *)mapViewLocal viewForAnnotation:(id <MKAnnotation>)annotation {
if (annotation == mapViewLocal.userLocation) {
mapViewLocal.userLocation.title = @"Test";
[mapViewLocal setRegion:MKCoordinateRegionMakeWithDistance(mapViewLocal.userLocation.coordinate, 1000, 1000) animated:YES];
return nil;
}
MKPinAnnotationView *pinView = (MKPinAnnotationView*)[mapViewLocal dequeueReusableAnnotationViewWithIdentifier:@"Pin"];
if(pinView == nil) {
pinView = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"Pin"] autorelease];
pinView.pinColor = MKPinAnnotationColorPurple;
pinView.rightCalloutAccessoryView = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
pinView.animatesDrop = NO;
pinView.canShowCallout = YES;
} else {
pinView.annotation = annotation;
}
return pinView;
}
Les broches violettes ont un bouton de divulgation de détail, mais mon annotation n'en a pas. Comment puis-je définir un tel bouton?
Et c'est la méthode où je peux faire un bouton est somethin pressd:
-(void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control
Comment pourrais-je faire la différence entre ma position et tous les autres son, parce que je besoin d'un traitement différent. Y a-t-il un autre délégué ou dois-je faire une sorte de clause if?