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.