iPhone/iPad:何时在设备旋转时更改背景
我应该在设备旋转的哪个点替换形成背景的图像。有 2 张图像,一张为风景,一张为肖像。
目前,我使用 WillRotate 事件,但它的性能“不稳定”,并且我收到关于不要在两阶段轮换中执行此操作的警告。
At what point in the rotation of a device should I replace the image that forms the background. There are 2 images, one for Landscape, one for Portrait.
Currently I use the WillRotate event, but it's 'choppy' in performance and I get warnings about not to do this in a two stage rotation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 -
1。
-(void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation持续时间:(NSTimeInterval)duration
在执行一步用户界面旋转之前发送到视图控制器。
或者
在用户界面旋转后发送到视图控制器。
I use either -
1.
-(void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
Sent to the view controller before performing a one-step user interface rotation.
or
Sent to the view controller after the user interface rotates.