在重载的drawRect:方法中的几个ObjC项目中我看到了UIRectFill()
被使用。它在做什么以及它在Monotouch中的相同之处是什么?
例如,在这里,它将填充的矩形放在/它将它绘制到的位置:
CGRect borderRect = bounds;
UIRectFill(borderRect);
borderRect.origin.x = CGRectGetMaxX(bounds) - borderThickness;
UIRectFill(borderRect);
你在找UIKit.UIGraphics.RectFill
。
您可以使用miguel de icaza的Rosetta Stone来找出objective-c选择器和monotouch方法之间的映射。
我也发现monotouch API documentation非常有用,尽管函数和选择器之间没有直接映射。