2

我正在使用最新的 Monotouch 5.2.4。作为我开发的一部分,我正在尝试更改 Popover 控制器的背景边框。根据苹果文档,这可以使用从 UIPopoverBackgroundView 类继承的自定义类进行管理。

所以我创建了如下这样的类

public class MyPopoverBackground : UIPopoverBackgroundView
{
    public MyPopoverBackground ()
    {
        UIImageView imgBackground = new UIImageView();
        UIImage img = UIImage.FromFile(@"SupportData/Popbg.png");
        img.StretchableImage(18,10);
        imgBackground.Image = img;
        this.AddSubview(imgBackground);
    }   
}

创建此类后,我试图将此视图与视图控制器中的 Popup 对象相关联。定义如下

UIPopoverController popup = new UIPopoverController(searchPage);
popup.popOverBackroundViewClass = new MyPopoverBackground(); //This line throws compilation error

上面代码中的最后一行,分配发生的地方会引发编译错误(“不包含...的定义”)。

这是什么意思?这在 Monotouch 中不支持吗(在 Objective-C 中似乎支持,因为我在网上看到了很多示例)?或者我错过了一些东西。

感谢你的帮助。

4

1 回答 1

3

接得好!看起来popoverBackgroundViewClassMonoTouch 目前缺少(iOS5 中的新功能)的绑定。

我会考虑实施它。如果您想在http://bugzilla.xamarin.com上填写错误报告,您将在完成后收到通知(只需一个带有此问题链接的快速错误报告就足够了)。我也应该能够给你一个修补程序或解决方法。

更新

在 MonoTouch 5.3+(一旦发布)中,您将能够执行以下操作:

popoverController.PopoverBackgroundViewType = typeof (MyPopoverBackgroundView);

请注意,您不能创建自己的实例,因为它需要从本机端完成(因此您只告诉UIPopoverController创建哪种类型)。

您还需要遵循所有要求,UIPopoverBackgroundView这意味着导出所需的选择器(这比简单地继承要复杂一些,因为它也需要static方法)。例如

    class MyPopoverBackgroundView : UIPopoverBackgroundView {

        public MyPopoverBackgroundView (IntPtr handle) : base (handle)
        {
            ArrowOffset = 5f;
            ArrowDirection = UIPopoverArrowDirection.Up;
        }

        public override float ArrowOffset { get; set; }

        public override UIPopoverArrowDirection ArrowDirection { get; set; }

        [Export ("arrowHeight")]
        static new float GetArrowHeight ()
        {
            return 10f;
        }

        [Export ("arrowBase")]
        static new float GetArrowBase ()
        {
            return 10f;
        }

        [Export ("contentViewInsets")]
        static new UIEdgeInsets GetContentViewInsets ()
        {
            return UIEdgeInsets.Zero;
        }
    }
于 2012-02-16T14:23:48.853 回答