9.5. Displaying Pins with Different Colors on a Map View
Problem
The default color for pins dropped on a map view is red. You want to be able to display pins in different colors in addition to the default color.
Solution
Return instances of MKPinAnnotationView to your map view through
the mapView:viewForAnnotation:
delegate method.
Every annotation that is added to an instance of MKMapView has a corresponding view that gets
displayed on the map view. These views are called annotation
views. An annotation view is an object of
type MKAnnotationView, which is a
subclass of UIView. If the delegate
object of a map view implements the mapView:viewForAnnotation: delegate method,
the delegate object will have to return instances of the MKAnnotationView class to represent (and
optionally, customize) the annotation views to be displayed on a
map view.
Discussion
To set up our program so we can customize the color (choosing from
the default SDK pin colors) of the annotation view that gets dropped on
a map view to represent the annotation, we must return an instance of
the MKPinAnnotationView class instead
of an instance of MKAnnotationView in
the mapView:viewForAnnotation:
delegate method. Bear in mind that the MKPinAnnotationView class is a subclass of the
MKAnnotationView class.
-(MKAnnotationView*)mapView:(MKMapView*)mapViewviewForAnnotation:(id<MKAnnotation>)annotation{MKAnnotationView*result=nil;if([annotationisKindOfClass:[MyAnnotationclass]]==NO){returnresult;}if([mapView ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access