MKMapView Clicking on pins won't call didSelectAnnotationView

点点圈 提交于 2019-12-18 08:31:22

问题


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?


回答1:


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.



来源:https://stackoverflow.com/questions/11910824/mkmapview-clicking-on-pins-wont-call-didselectannotationview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!