Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
999 views
in Technique[技术] by (71.8m points)

objective c - MKMapView Clicking on pins won't call didSelectAnnotationView

I am using a mapView and am trying to make a callout pop up when you click on a pin which is shown on the map.

The pins manage to be placed in the proper locations so I think the annotations work but when I click on the pin it won't show a callout. I have show callout = YES.

The method didSelectAnnotationView does not get called at all when I click on the pin.

Are there some common problems which may cause this method not to be called?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If tapping on a pin doesn't show the callout even if canShowCallout is YES, then the annotation's title is probably nil or blank.

If the title is blank, the callout won't show nor will the didSelectAnnotationView delegate method get called.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...