I have a MKMapView that has a pin and when pressed shows the annotiona Title and SubTitle.
Is there a way in code to have this text shown automatically so the user need not click it?
If I have many pins, can the all appear as well?
I have a MKMapView that has a pin and when pressed shows the annotiona Title and SubTitle.
Is there a way in code to have this text shown automatically so the user need not click it?
If I have many pins, can the all appear as well?
This might help:
You need to use the selectAnnotation message on MKMapView:
- (void)selectAnnotation:(id <MKAnnotation>)annotation animated:(BOOL)animated
Selects the specified annotation and displays a callout view for it.