iPhone/iPad 横向和 UIAlertView

发布于 2024-10-20 00:59:12 字数 160 浏览 4 评论 0原文

我正在使用 Sparrow 框架,并且我还强制我的应用程序仅处于横向方向。我的应用程序中有一个按钮,单击该按钮将打开 UIAlertView。但是,如果我旋转(将方向从横向右更改为横向左(意味着主页按钮位于右侧或左侧))并单击按钮打开 UIAlertView - 它会打开它,但是颠倒了! 我该如何修复它?

I am using Sparrow framework, and also I am forcing my app to be only in landscape orientation. I have a button in my app, clicking on which opens UIAlertView. However, if I rotate (change orientation from say landscape right to landscape left (meaning that home button is either on the right or left)) and click on the button to open UIAlertView -- it opens it but upside down!
How do I fix it?

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

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

发布评论

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

评论(1

你的呼吸 2024-10-27 00:59:12

固定

[[UIApplication sharedApplication] setStatusBarOrientation: [UIDevice currentDevice].orientation animated: NO ]; 

-(void)orientationDetected:(UIEvent *)event

Fixed with

[[UIApplication sharedApplication] setStatusBarOrientation: [UIDevice currentDevice].orientation animated: NO ]; 

in

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