i have one view >> subview mkmapview .
in that i want to show image . ...my current image is like this.
and i want to show like this

how can i do this ? how can i add image in this anotation.
|
|
|
In your MKAnnotationView set the leftCalloutAccessoryView property
Apple docs |
|||
|
|
|
The image you're talking about corresponds to the leftCalloutAccessoryView property of MKAnnotationView. Extract from the doc :
You can implement a methods such as this :
Hope this helps, Vincent |
|||
|
|
where v - is the view of your annotation(MKAnnotationView) Or if you want complete solution - here it is:
You should write this code on the class of your map's delegate |
|||
|
|