UIAlertView 要求访问当前位置错误方向

发布于 2024-12-11 09:10:07 字数 122 浏览 0 评论 0原文

我的应用程序当前要求用户访问其当前位置,因此当应用程序启动时,它会显示 UIAlertView 请求它。问题是我的应用程序仅设置为纵向模式,但 UIAlertView 以横向显示。我必须旋转手机才能使其正确定向。我在这里缺少什么?

My app currently asks the user for access to their current location, so when the app launches it shows the UIAlertView asking for it. The issue is that my app is set only for portrait mode, but the UIAlertView is displayed in landscape. I'd have to rotate the phone to have it oriented correctly. What am I missing here?

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

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

发布评论

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

评论(1

梦在深巷 2024-12-18 09:10:07

查看这篇文章:

http://iphonedevelopment.blogspot。 com/2008/12/more-on-uialertview-and-landscape.html

基本上,您可能需要在警报之前尝试类似的操作。

[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationPortrait];

更新:这是一个带有替代解决方案帖子的SO。

旋转 UIAlertView

Checkout this post:

http://iphonedevelopment.blogspot.com/2008/12/more-on-uialertview-and-landscape.html

Basically you may need to try something like this before the alert.

[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationPortrait];

UPDATE: Here is a SO with an alternate solution post.

Rotating a UIAlertView

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