我正在尝试将AUISelectiveBordersView 移植到 MonoTouch。它基本上是通过类别的子类CALayer
和集成。UIView
AUISelectiveBordersLayer 的“翻译”很简单,但集成点有点棘手。在 obj-c 中它是这样完成的:
@implementation UIView (AUISelectiveBorder)
+(Class) layerClass {
return [AUISelectiveBordersLayer class];
}
有什么办法可以把它翻译成 MonoTouch 吗?它看起来像覆盖静态方法,但我没有看到任何类似layerClass
或layerType
在 MT 中的东西。