iPhone 按需轮换

发布于 2024-10-10 14:18:37 字数 164 浏览 1 评论 0原文

有没有办法手动检查设备的当前位置并要求设备自动旋转它,而无需等待用户实际旋转设备?

目前,我使用 -shouldAutorotateToInterfaceOrientation 中的多个 IF 控制旋转,但在少数情况下,我必须停止视图旋转并再次启用它,并且我不希望用户旋转设备两次以获得所需的方向。

Is there a way to manually check current position of device AND ask device to automatically rotate it without waiting for user to actually rotate the device?

Currently I control the rotation with several IFs in -shouldAutorotateToInterfaceOrientation but in few situations I have to stop the view from rotating and enable it again and I don't want user to rotate the device twice to have the desired orientation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

陌路黄昏 2024-10-17 14:18:37

为了检查方向,

UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation];

然后根据您的情况,您可以根据需要更改设备方向..

您可以使用 :

[UIApplication sharedApplication].statusBarOrientation = UIInterfaceOrientationPortrait;

或您想要的任何内容。

或者你可以继续关注,但这不是这样做的

[[UIDevice currentDevice] setOrientation:UIDeviceOrientationPortrait];

for checking Orientation

UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation];

then based on your condition you can change device orientation as you wish..

you can use :

[UIApplication sharedApplication].statusBarOrientation = UIInterfaceOrientationPortrait;

or what ever you want.

or you can go for following but this is not do

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