gpt4 book ai didi

iphone - 在自动调整 View 大小后,如何获取 CGRect 值 x、y、宽度、高度?

转载 作者:可可西里 更新时间:2023-11-01 04:07:38 26 4
gpt4 key购买 nike

当 ipad 的方向发生变化时,我想要 View 的 x、y、宽度、高度值自动调整大小。我怎样才能得到它?

最佳答案

View 旋转后,您应该能够获得 View 的新尺寸。

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
CGRect myFrame = [self.view frame];
NSLog(@"height = %f", myFrame.size.height);
NSLog(@"width = %f", myFrame.size.width);
NSLog(@"x = %f", myFrame.origin.x);
NSLog(@"y = %f", myFrame.origin.y);
}

关于iphone - 在自动调整 View 大小后,如何获取 CGRect 值 x、y、宽度、高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9665395/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com