我正在尝试在表格视图单元格中显示MPMoviePlayerViewController。 我已经在表视图单元格的didselect方法中初始化它。问题是我看不到播放器中的控件如:全屏按钮和其他按钮,如下图所示:
任何人都可以帮助我如何在播放器控制器中实现这些控件吗? 这是我在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]];
}