我在Xamarin UIView
上有一个Buttons
和一些Page
,我需要找到UIView
而不是Frame
的宽度和高度
有什么方法可以解决这个问题吗?
答案 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;
希望它可以帮到你。