不要自动旋转视图控制器,但显示旋转的 UIAlertView

发布于 2024-12-05 10:58:23 字数 167 浏览 1 评论 0原文

是否可以在 UIViewController 中显示旋转到设备当前方向的 UIAlertView,并且在 shouldAutorotateToInterfaceOrientation: 中始终返回 NO > ?

Is it possible to show a UIAlertView rotated to the device's current orientation inside a UIViewController that always returns NO in shouldAutorotateToInterfaceOrientation: ?

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

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

发布评论

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

评论(1

两仪 2024-12-12 10:58:23

您可以在显示视图后根据设备的方向旋转视图,使用以下命令:

alertView.transform = CGAffineTransformRotate(alertView.transform, degreesToRadian(90));

You can rotate the view after showing it depending on the orientation of the device, using this:

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