MPMoviePlayerController“从服务器加载电影

时间:2012-04-01 13:47:37

标签: mpmovieplayercontroller

它的问题当我播放视频时它显示黑屏并播放没有视频的音频,除了关闭应用程序之外无法做任何事情。 这是我的代码

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


 NSString *movieURL = [NSString stringWithFormat:@"http://www.aliakbar84.com/test/%d.mp4",indexPath.row];

 MPMoviePlayerController *moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL URLWithString:movieURL]];
[moviePlayer play];
 MPMoviePlayerViewController *movieplayer1 = [[MPMoviePlayerViewController alloc] initWithContentURL:movieurl];
[self presentMoviePlayerViewControllerAnimated:movieplayer1];

1 个答案:

答案 0 :(得分:1)

为什么要对这两者进行初始化,MPMoviePlayerController MPMoviePlayerViewController

不应该这样做。删除MPMoviePlayerController的初始化!