我正在使用最新的 Monotouch 5.2.4。作为我开发的一部分,我正在尝试更改 Popover Controller 的背景边框。根据苹果文档,这可以使用从 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);
}
}
创建此类后,我试图将此 View 与 View Controller 中的 Popup 对象相关联。定义如下
UIPopoverController popup = new UIPopoverController(searchPage);
popup.popOverBackroundViewClass = new MyPopoverBackground(); //This line throws compilation error
上面代码的最后一行,分配发生的地方会引发编译错误(“不包含...的定义”)。
这是什么意思?这在 Monotouch 中不支持吗(在 Objective-C 中似乎支持,因为我在网上看到了很多示例)?或者我错过了什么。
感谢您的帮助。
好收获!它看起来像 popoverBackgroundViewClass
的绑定(bind)MonoTouch 目前缺少(iOS5 中的新功能)。
我会考虑实现它。如果您想在 http://bugzilla.xamarin.com 填写错误报告完成后您会收到通知(只需一个带有此问题链接的快速错误报告就足够了)。我应该也可以给你一个修补程序或解决方法。
更新
在 MonoTouch 5.3+(一旦发布)中,您将能够执行以下操作:
popoverController.PopoverBackgroundViewType = typeof (MyPopoverBackgroundView);
请注意,您不能创建自己的实例,因为它需要从 native 端完成(因此您只告诉 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;
}
}
关于ios - 缺少 UIPopoverController 的 PopoverBackroundViewClass 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9311914/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |