无法在ios中的MPMoviePlayerViewController中显示播放器控件

时间:2015-09-10 06:23:46

标签: ios video uiview tableview

我正在尝试在表格视图单元格中显示MPMoviePlayerViewController。 我已经在表视图单元格的didselect方法中初始化它。问题是我看不到播放器中的控件如:全屏按钮和其他按钮,如下图所示: enter image description here

任何人都可以帮助我如何在播放器控制器中实现这些控件吗? 这是我在didselect方法中的代码:

 -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

NSURL * movieURL = [NSURL URLWithString:@"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"];

self.playerController = [[MPMoviePlayerViewController alloc]initWithContentURL:movieURL];

self.playerController.moviePlayer.movieSourceType = MPMovieSourceTypeFile;
self.playerController.moviePlayer.controlStyle=MPMovieControlStyleEmbedded;


[self.playerController.moviePlayer play];

[self.view addSubview:[self.playerController view]];


}

0 个答案:

没有答案