我是 Monotouch 的新手,但我在遥远的过去做过一些 Objective C。我正在尝试弄清楚我将如何执行以下操作:
- 我有一个带有导航栏和按钮的 ViewController。
- 当我单击按钮时,我希望出现一个 UIPopOver,其中可能有一个表格视图或按钮。
我要解决的是如何从放置在 UIPopOver 中的视图中获取委托/事件,以将其事件发送回调用视图。
在 Objective C 中,您在视图中的调用中设置委托,如下所示:
UIPopoverController *popover =
[[UIPopoverController alloc] initWithContentViewController:myPopOverViewcontrol];
popover.delegate = self;
那么在 Monotouch 中你是如何做到这一点的呢?如果像这样设置 UIPopOver:
UIPopoverController myPopOver = new UIPopoverController(new myPopOverViewControl());
myPopOver.PopoverContentSize = new SizeF(200f, 300f);
myPopOver.PresentFromRect (btnButton.Frame, v, UIPopoverArrowDirection.Up, true);
你如何附加代表?
谢谢
麦克风