I'm new to Monotouch but I have done some Objective C in my distant past. I'm trying to work out how I would do the following:
- I have a ViewController with a Naviagtion Bar and button.
- When I click the button I want a UIPopOver to appear which might have a tableview or button in it.
What I'm trying to work out is how I get the delegate/event from the view I place in the UIPopOver to send it's event back to the calling view.
In Objective C you set the delegate in the calling in the view like this:
UIPopoverController *popover =
[[UIPopoverController alloc] initWithContentViewController:myPopOverViewcontrol];
popover.delegate = self;
So in Monotouch how do you do the same? If set up the UIPopOver like this:
UIPopoverController myPopOver = new UIPopoverController(new myPopOverViewControl());
myPopOver.PopoverContentSize = new SizeF(200f, 300f);
myPopOver.PresentFromRect (btnButton.Frame, v, UIPopoverArrowDirection.Up, true);
How do you attach the delegate?
thanks
Mike