Ive got a few annotation on a map that is loaded. I know how to get the distance from the annotation to the users location and want to be able to show it in the subtitle when the user selects it.
I thought I could do it here.
- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view
But the problem is I can't assign a new subtitle because it complains that it is readonly.
Any thoughts?
According to your comment, the code you tried is something like this:
The compiler will give the error "Assignment to readonly property" here because the
annotation
property ofMKAnnotationView
is typed as the genericid <MKAnnotation>
.The
MKAnnotation
protocol definessubtitle
as readonly as the default.The
MKPointAnnotation
class (which you are using for your annotations according to another comment) implementsMKAnnotation
but overridessubtitle
as write-able.To avoid the compiler error, you need to cast
view.annotation
toMKPointAnnotation
(which in your case it really is). For example: