我想在iPhone SDK.40(MPMoviePlayerViewController)中仅以横向模式播放视频.它不应该支持肖像模式播放.我们如何做到这一点.
And*_*rew 11
我在这里找到了这个文档:
所以基本上你只需要创建自己的MPMoviePlayerViewController子类并覆盖shouldAutorotateToInterfaceOrientation:方法,如下所示:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
return UIInterfaceOrientationIsLandscape(toInterfaceOrientation);
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
4391 次 |
| 最近记录: |