1

我正在尝试将AUISelectiveBordersView 移植到 MonoTouch。它基本上是通过类别的子类CALayer和集成。UIView

AUISelectiveBordersLayer 的“翻译”很简单,但集成点有点棘手。在 obj-c 中它是这样完成的:

@implementation UIView (AUISelectiveBorder)

+(Class) layerClass {
    return [AUISelectiveBordersLayer class];
}

有什么办法可以把它翻译成 MonoTouch 吗?它看起来像覆盖静态方法,但我没有看到任何类似layerClasslayerType在 MT 中的东西。

4

1 回答 1

5

幸运的是,我发现它可以通过子类化 UIView 来工作:

public class UIViewWithSelectiveBorders : UIView {

    [Export("layerClass")]
    public static Class LayerClass () {
        return new Class (typeof(SelectiveBorderLayer));
    }
}

目前这对我的任务来说已经足够了,但一个更普遍的问题仍然存在:有没有办法在没有子类化的情况下改变它UIView(例如,如果我想为所有UILabels 覆盖它)

于 2012-11-21T06:17:02.100 回答