gpt4 book ai didi

iphone - iPad 旋转中的文本字段动画

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:57:23 25 4
gpt4 key购买 nike

我开始将 iPhone 应用程序升级到通用应用程序,我有一个问题:当用户旋转 iPad 时,我如何为几个文本字段设置动画?

在纵向模式下,它们位于 View 的中间,但在横向模式下,我希望它们位于 View 的右侧。

我怎样才能制作动画?

谢谢,

最佳答案

当界面旋转时,您的 View Controller 的 willAnimateRotationToInterfaceOrientation:duration: 方法将被调用。它从动画 block 内部调用以进行旋转,因此对任何可设置动画的属性的更改都应自动设置动画。实现可能看起来像这样:

- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration {
if (UIInterfaceOrientationIsLandscape(interfaceOrientation)) {
// Move views to the correct positions for landscape orientation
} else {
// Move views to the correct positions for portrait orientation
}
}

关于iphone - iPad 旋转中的文本字段动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5204891/

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