CgRectGetWidth monotouch

时间:2012-05-11 15:53:04

标签: xamarin.ios cgrect

floorf(CGRectGetMinX(visibleBounds) / CGRectGetWidth(visibleBounds)); 

方法CGrectGetWidth和CGrectGetMinX的monotouch版本是什么?

1 个答案:

答案 0 :(得分:5)

更新Xamarin.iOS Unified API

Xamarin.iOS引入了Unified API,其中包含CGRect以及CoreGraphics命名空间内的朋友。


CGRect已映射到System.Drawing.RectangleFSee Type Mappings

因此,如果您有自己的System.Drawing.RectangleF

代码看起来像

RectangleF visibleBounds = new RectangleF(0, 0, 10, 10); // Or your own instance of visibleBounds           
float minx = visibleBounds.GetMinX();
float w = visibleBounds.Width;

希望有所帮助

亚历