为什么在 MPMoviePlayerController 中播放电影时无法正确检索 UIDeviceOrientation?

发布于 2024-09-04 08:08:48 字数 387 浏览 7 评论 0原文

当我不玩任何东西时,一切都工作正常(我正在调用开始通知等,并使用方向来旋转我的视图)。但是当我每次尝试使用 MPMoviePlayerController 时,

UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];

orientation 都会得到 UIDeviceOrientationUnknown

有什么线索吗? 当电影停止时,一切又恢复正常。 我需要这个方向来旋转播放器的窗口,因为我使用的是 Iphone OS 3.1,所以我不能直接使用 MPMovie 播放器控制器内的 view 属性。

Everything works fine while I'm not playing anything (I'm calling beginnotifications, etc, and using the orientation to rotate my view). But after I start playing with MPMoviePlayerController everytime when I try

UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];

The orientation gets a UIDeviceOrientationUnknown.

Any clue?
When the movie stops everything works alright again.
I need this orientation to rotate the player's window, because Im using Iphone OS 3.1 so I can't directly use the view property inside MPMovie player controller.

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

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

发布评论

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

评论(1

我做我的改变 2024-09-11 08:08:48

至少在低于 3.2 的 iPhone 操作系统版本中,我还没有找到执行此操作的方法。我放弃了。

但是,嘿,我必须在 Ipad 中为我的应用程序编写一个版本,我发现对于 iPhone OS 3.2,有一种方法可以做到这一点。

您唯一需要做的就是使用自定义类,您必须将其作为 MPMoviePlayerViewController 的子级并重写方法 shouldAutorotateToInterfaceOrientation 以在您需要时返回 yes要执行的自旋转。这一切都在 MPMoviePlayerViewController 类参考中。

——泽德韦勒

I haven't found a way to do this at least in iPhone OS version lower than 3.2. I gave up.

But hey, I had to code a version for my app in the Ipad and I discovered that for iPhone OS 3.2, there's a way to do it.

The only thing you have to do is to use a custom class, that you have to make child of MPMoviePlayerViewController and override the method shouldAutorotateToInterfaceOrientation to return yes whenever you want the autorotation to be performed. It's all in the MPMoviePlayerViewController class reference.

– Zelldweller

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