什么是Monotouch中的UIRectFill()?

问题描述 投票:3回答:2

在重载的drawRect:方法中的几个ObjC项目中我看到了UIRectFill()被使用。它在做什么以及它在Monotouch中的相同之处是什么?

例如,在这里,它将填充的矩形放在/它将它绘制到的位置:

CGRect borderRect = bounds;
UIRectFill(borderRect);
borderRect.origin.x = CGRectGetMaxX(bounds) - borderThickness;
UIRectFill(borderRect);
uikit xamarin.ios
2个回答
8
投票

你在找UIKit.UIGraphics.RectFill


2
投票

您可以使用miguel de icaza的Rosetta Stone来找出objective-c选择器和monotouch方法之间的映射。

我也发现monotouch API documentation非常有用,尽管函数和选择器之间没有直接映射。

© www.soinside.com 2019 - 2024. All rights reserved.