我需要绑定的方法在原始数组中有参数,例如:
(bool)isRectangle:(const CGPoint[4])corners;
如何将const CGPoint[4]
类型与 C# 类型绑定?
注意:使用 Sharpie,结果如下
[Static]
[Export("isRectangle:")]
void IsRectangle(CGPoint[] corners);
当我构建它时,我得到了错误
cannot convert from 'CoreGraphics.CGPoint[]' to 'Foundation.NSObject'