我尝试了很多解决方案,但还没有奏效!我正在 Xcode 4.6.3 上开发 iOS 6.1 iPhone 应用程序。
我在我的应用程序中使用 MPMoviePlayerController。我有 4 个选项卡式应用程序。Movieplayer 在 SecondViewController 中。我没有将它作为视图控制器呈现,而是将它的视图添加到我自己的视图控制器中。视频播放得很好,我可以全屏播放。
下面是我的代码。有什么解决办法吗?
#import "SecondViewController.h"
@interface SecondViewController ()
@end
@implementation SecondViewController
@synthesize moviePlayer;
- (IBAction)playVideo:(id)sender {
NSURL * url = [[NSURL alloc]initWithString:@"http://server:1935/live/test/playlist.m3u8"];
moviePlayer = [[MPMoviePlayerController alloc]initWithContentURL:url];
[self.view addSubview:moviePlayer.view];
moviePlayer.fullscreen = YES;
moviePlayer.allowsAirPlay = YES;
}
@end