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

发布于 2024-12-05 16:16:21 字数 115 浏览 0 评论 0原文

我应该在设备旋转的哪个点替换形成背景的图像。有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枯寂 2024-12-12 16:16:21

我使用 -

1。
-(void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation持续时间:(NSTimeInterval)duration

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

或者

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation

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

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

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation

Sent to the view controller after the user interface rotates.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文