iPhone / iPad:何时更改设备旋转时的背景

时间:2011-09-21 18:02:16

标签: iphone ios ipad animation rotation

在设备旋转的哪一点,我应该替换形成背景的图像。有2个图像,一个用于Landscape,一个用于Portrait。

目前我使用的是WillRotate事件,但它在性能方面“不稳定”,并且我会在两阶段轮换中收到关于不执行此操作的警告。

1 个答案:

答案 0 :(得分:1)

我使用 -

1。 -(void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration

在执行一步式用户界面旋转之前发送到视图控制器。

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation

用户界面旋转后发送到视图控制器。