我正在尝试在我的应用程序中流式传输视频。我发现的方法是:
NSURL *theMovieURL = [NSURL URLWithString:self.data.trailer];
if (theMovieURL)
{
self.movieController = [[MPMoviePlayerViewController alloc] initWithContentURL:theMovieURL];
[self presentMoviePlayerViewControllerAnimated:self.movieController];
[self.movieController.moviePlayer play];
}
我不确定它是否是最传统的,但它确实有效。
问题是我无法弄清楚如何允许横向模式,仅用于视频。shouldAutorotate
我应该使用or之类的东西shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
,以及如何使用?
仅供参考,整个应用程序只允许纵向模式。
谢谢你的帮助。