Is it possible to make a call out accessory view in mapview without an accessory button in it. I am loading a mapview. In some cases, on tapping the pin, I need to show the accessory view, but without an accessory button to tap. Is it possible? If so, how?
Share
Have you looked at the
viewForAnnotationdelegate? Using this delegate you can create a custom view for when the pin is tapped.In here you can do something like this:
If you don’t set
rightCalloutAccessoryViewthen there will be no accessory button.Hope this gets you on the right track.