gpt4 book ai didi

iphone - 在 willRotateToInterfaceOrientation 中获取正确的框架

转载 作者:行者123 更新时间:2023-12-03 18:55:39 26 4
gpt4 key购买 nike

我的 subview 在纵向和横向时具有不同的布局。布局基于 super View 的框架,并且并不简单(无法使用自动调整大小的 Spring 和支柱来实现)。

问题是,如果我在 willRotateToInterfaceOrientation 期间更改 subview 的框架,动画是正确的,但 super View 的框架仍然是旧方向的框架。

如果我在 didRotateFromInterfaceOrientation 期间更改 subview ,则 super View 的框架确实是正确的,但框架更改仅发生在旋转动画之后,而且看起来不太好。

改变方向时改变 subview 框架的正确方法是什么?

最佳答案

此函数可以满足您的需要,因为 View 框架已因旋转而发生变化,并且不会停止自定义动画。

-(void)willAnimateRotationToInterfaceOrientation (UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
float width = UIInterfaceOrientationIsPortrait(toInterfaceOrientation) ? [[UIScreen mainScreen] applicationFrame].size.width : [[UIScreen mainScreen] applicationFrame].size.height;
//do something with the width now
//or you can get the height the same way
}

关于iphone - 在 willRotateToInterfaceOrientation 中获取正确的框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7377171/

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