在设备旋转的哪一点,我应该替换形成背景的图像。有2个图像,一个用于Landscape,一个用于Portrait。
目前我使用的是WillRotate事件,但它在性能方面“不稳定”,并且我会在两阶段轮换中收到关于不执行此操作的警告。
答案 0 :(得分:1)
我使用 -
1。
-(void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
在执行一步式用户界面旋转之前发送到视图控制器。
或
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
用户界面旋转后发送到视图控制器。