floorf(CGRectGetMinX(visibleBounds) / CGRectGetWidth(visibleBounds));
什么是方法CGrectGetWidth
和 CGrectGetMinX 的 monotouch 版本?
floorf(CGRectGetMinX(visibleBounds) / CGRectGetWidth(visibleBounds));
什么是方法CGrectGetWidth
和 CGrectGetMinX 的 monotouch 版本?
Xamarin.iOS 引入了统一API,它现在CGRect
在命名空间中包含和朋友CoreGraphics
。
CGRect
映射到System.Drawing.RectangleF
(请参阅类型映射)
所以如果你有自己的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;
希望有帮助
亚历克斯