它的问题当我播放视频时它显示黑屏并播放没有视频的音频,除了关闭应用程序之外无法做任何事情。 这是我的代码
- (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];
答案 0 :(得分:1)
为什么要对这两者进行初始化,MPMoviePlayerController
和 MPMoviePlayerViewController
?
不应该这样做。删除MPMoviePlayerController
的初始化!