iPad ModalView旋转问题

发布于 2024-10-14 21:52:41 字数 373 浏览 2 评论 0原文

我创建了一个 UISplitView,在 splitView 以横向模式加载后,我使用presentModalView 显示 modalView,我的问题是 modalView 始终处于纵向模式,找不到解决方案。

UIDeviceOrientationorientation = [[UIDevice currentDevice]orientation];

它给我横向方向,但使用

UIDeviceOrientationorientation=[[UIApplicationsharedApplication]statusBarOrientation]

给我纵向。 (在 4.2 下不工作)

谢谢,

I created a UISplitView, after the splitView is load in landscape mode, I display a modalView using the presentModalView, my problem is that the modalView is always in portrait mode, can't find the solution for that.

UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];

it gives me the landscape orientation but using

UIDeviceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation]

gives me Portrait. (not working under 4.2)

Thanks,

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

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

发布评论

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

评论(1

瞳孔里扚悲伤 2024-10-21 21:52:41

我正在使用 NSTimer 并使用它和它的工作来管理我的功能,这有点棘手,但这是我现在找到的唯一解决方案。

[NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(loadingModal:) userInfo:nil repeats:NO];

i'm using an NSTimer and loas my function with it and its work, thats a bit tricky but that is the only solution I found right now.

[NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(loadingModal:) userInfo:nil repeats:NO];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文