Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following situation in Monotouch. I have implemented the brilliant solution which is shown in the following post customize callout bubble for annotationview? by TappCandy. My custom callout view is a MKPinAnnotationView subclass.

So far the solution works fine regarding the callout showing. But I have a problem with the the user interaction of the callout subview. It includes three labels and a button, each one below the other. The button has a TouchUpInside event defined but it seems that there is no user interaction enabled in button. The only touch area of the button that is recognizable is a small area above the pin image. If the subview's offset regarding the pin image is above a threshold, it looks like there is no touch area for the button.

So my question is this: How can I have a normal user interaction for the button and the whole subview respectively? The code I use for adding the callout subview when the SetSelected of the custom annotation view class is executed, is the following:

public override void SetSelected(bool selected, bool animated)
{
    base.SetSelected(selected, animated);

    if(selected)
    {
        ShowCallout(); // this.AddSubview(calloutView);
    }
    else
    {
        FadeOutCallout(); // calloutView.RemoveFromSuperview();
    }
}

where ShowCallout() and FadeCallout() add and remove the custom callout subview (with the three labels and the button) via a fade in / fade out effect.

The code that creates the custom callout subview when the custom annotation view is created and places it in a specific offset above the pin is the following:

private void CreateCalloutView()
{
   calloutView = new UIView();
   calloutView.AutoresizingMask = UIViewAutoresizing.All;
   calloutViewFrame = new RectangleF(calloutViewFrame.X + offsetFromParent.X,
                                     calloutViewFrame.Y + offsetFromParent.Y,
                                     calloutViewFrame.Size.Width,
                                     calloutViewFrame.Size.Height);
   calloutView.Frame = calloutViewFrame;
   calloutView.BackgroundColor = UIColor.Clear;

   // Create the callout label views.
   text1 = new UILabel();
   text1.AutoresizingMask = UIViewAutoresizing.All;
   text1.TextAlignment = UITextAlignment.Center;
   text1.Frame = new RectangleF(0, 0, calloutView.Frame.Size.Width, 21);
   text1.Text = "text1";
   text1.BackgroundColor = UIColor.Clear;
   text.Font = UIFont.SystemFontOfSize(17);

   text2 = new UILabel();
   text2.AutoresizingMask = UIViewAutoresizing.All;
   text2.TextAlignment = UITextAlignment.Center;
   text2.Frame = new RectangleF(0, text1.Frame.Y +
                                   text1.Frame.Size.Height,
                                   calloutView.Frame.Size.Width, 21);
   text2.Text = "text2";
   text2.BackgroundColor = UIColor.Clear;
   text2.Font = UIFont.SystemFontOfSize(17);

   text3 = new UILabel();
   text3.AutoresizingMask = UIViewAutoresizing.All;
   text3.TextAlignment = UITextAlignment.Center;
   text3.Frame = new RectangleF(0, text1.Frame.Y +
                                   text1.Frame.Size.Height +
                                   text2.Frame.Size.Height,
                                   calloutView.Frame.Size.Width, 21);
   text3.Text = "text3";
   text3.BackgroundColor = UIColor.Clear;
   text3.Font = UIFont.SystemFontOfSize(17);

   button = UIButton.FromType(UIButtonType.RoundedRect);
   button.UserInteractionEnabled = true;
   button.AutoresizingMask = UIViewAutoresizing.All;
   button.Frame = new RectangleF(20, text1.Frame.Y +
                                     text1.Frame.Size.Height +
                                     text2.Frame.Size.Height +
                                     text3.Frame.Size.Height, 156, 37);

   button.Font = UIFont.SystemFontOfSize(15);
   button.SetTitleColor(UIColor.Black, UIControlState.Normal);
   button.SetTitle("Button >", UIControlState.Normal);
   button.TouchUpInside += (sender, e) => {

       Console.WriteLine("Button is touched");
   };

   calloutView.AddSubview(text1);
   calloutView.AddSubview(text2);
   calloutView.AddSubview(text3);
   calloutView.AddSubview(button);

}

It turns out that the callout view is shown almost well but I cannot touch the button.

UPDATE: I noticed that the button is clickable only when it overlaps with the pin image underneath. If I configure the offset of the subview so that the button lies exactly over the pin image, it is definitely clickable.

I also noticed that there is a MonoTouch.Foundation.MonoTouchException on the EnableInputClicksWhenVisible property of the annotation view. I don't know if this has something to do with anything, but I feel that this is the source of the problem.

share|improve this question
you may find this useful stackoverflow.com/questions/8615937/… – chatur Jan 11 '12 at 12:10
Chances are you need UserInteractionEnabled = true in all of your views leading up to the top. – miguel.de.icaza Jan 11 '12 at 16:05
@chatur This was proved to be extremely useful. I converted the sample to monotouch and although I have some issues with the callout position when zooming, it works fine with me. Thanks. – mimisdutch Jan 12 '12 at 7:51
@miguel Thanks for the answer. I haven't tried it yet because my code has been utterly changed since last time, but I will definitely try it. If it works, it seems to be a much cleaner solution. – mimisdutch Jan 12 '12 at 8:00
You might want to post your port as a sample on that question, for others to use :-) – miguel.de.icaza Jan 12 '12 at 20:23

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.