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