i want to create a custom callout bubble on MKMapView. But i want to create the call out bubble in the same manner of default bubble. So how to create a View look like annotaion in this image alt text

I want a custom custom view which look like "Parked Location" annotaion in the following image. with custom width, height etc. P

I am not able to add required details in Default bubble. Thats why am creating custom bubble.

Plz help me..thanks..

link|improve this question

feedback

4 Answers

up vote 14 down vote accepted

I have developed a custom callout bubble that is nearly identical to the system callout bubble, but gives more flexibility over the height and content. It should be fairly trivial to adjust the appearance to suit your needs. See my post on the Asynchrony Solutions blog for example code and the steps required to implement a good callout replacement.

link|improve this answer
thank you for this wonderful solution...... – Sijo Sep 3 '10 at 14:33
This link looks awesome and things work great in initial testing. – Jesse Rusak Sep 7 '10 at 0:41
the bubble and the gloss effect are all done without any png in this solution : just pure paths ! :O great ! (and as a consequence , this works also great for retina !) – yonel Sep 21 '10 at 8:30
Very nice solution. Though I spent a lot of time rewriting code to add such bubbles to a custom UIScrollView descendant. – Kostiantyn Sokolinskyi Apr 6 '11 at 12:07
I leveraged the code from @JARinteractive link at Asynchrony Solutions blog in my solution for this question: stackoverflow.com/questions/6392931/… Some added functionality includes auto-resizing the callout to fit a view loaded from a separate nib. A sample project is linked. – Jacob Jennings Nov 18 '11 at 22:55
show 1 more comment
feedback

You can check out this tutorial which provides an example on how to subclass the MKAnnotationView in order to provide custom content.

link|improve this answer
1  
thanks for the answer.I Know we can replace that callout bubble with another UIView. My Doubt is only about that tranparent background image..How to get that image. i Checked in all the mapkit framework. Or how we can draw a UIView like that default bubble. – Sijo May 4 '10 at 11:31
feedback

I am answering to my question.

http://stackoverflow.com/questions/1963063/uiview-callout-bubble/1966624#1966624

But even this is not the right answer..am still searching for that..Will post if am getting

link|improve this answer
Answer is here..stackoverflow.com/questions/2537259/… – Sijo Nov 4 '10 at 6:27
feedback

You need to use MKCircle and MKCircleView.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.