获取UIView的大小

时间:2016-07-26 11:58:14

标签: c# ios xamarin uiview xamarin.ios

我在Xamarin UIView上有一个Buttons和一些Page,我需要找到UIView而不是Frame的宽度和高度

有什么方法可以解决这个问题吗?

2 个答案:

答案 0 :(得分:2)

int width = self.view.frame.size.width
int height = self.view.frame.size.height

所以当你得到框架时,你可以得到宽度和高度。

答案 1 :(得分:0)

如果你想获得视图的大小:

float viewWidth = view.Frame.Width;
float viewHeight = view.Frame.Height;

如果你想获得整个页面的大小:

float screenWidth = UIScreen.MainScreen.Bounds.Width;
float screenHeight = UIScreen.MainScreen.Bounds.Height;

希望它可以帮到你。