Ich habe ein MKMapView
mit diesen Zeilen Quellcode implementiert (meine Position ist eine blaue Kugel, die andere ist sind lila Pins):MKMapView -> eine Schaltfläche für meine Position anzuzeigen
- (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;
}
Die lila Stifte eine Detail-Offenlegungsschaltfläche, aber meine Anmerkung hat keine. Wie kann ich einen solchen Knopf einstellen?
Und das ist das Verfahren, in dem ich somethin eine Schaltfläche pressd wird tun können:
-(void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control
Wie konnte ich zwischen meinen Standort und allen anderen eigenen unterscheiden, weil ich eine andere Behandlung benötigen. Gibt es einen anderen Delegierten oder muss ich eine Art if-Klausel machen?