我想在我的应用程序中播放具有透明背景的视频。它有一个男人在透明背景上四处走动。唯一的问题是MPMovieePlayer似乎有黑色背景。我怎样才能让它变得透明?
这是我尝试过的代码:
-(void)playMovie
{
NSString *resourcePath = [[NSBundle mainBundle] pathForResource:@"syncink movie" ofType:@"m4v"];
NSLog(@"%@",resourcePath);
NSURL *url = [NSURL fileURLWithPath:resourcePath];
NSLog(@"%@",url);
MPMoviePlayerViewController *moviePlayer;
moviePlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:url];
moviePlayer.moviePlayer.shouldAutoplay=YES;
moviePlayer.moviePlayer.controlStyle = MPMovieControlStyleNone;
[moviePlayer.moviePlayer setFullscreen:NO animated:YES];
[self.view addSubview:moviePlayer.view];
moviePlayer.view.frame = CGRectMake(200, 600, 400, 300);
[moviePlayer.moviePlayer play];
moviePlayer.view.backgroundColor = [UIColor clearColor];
for(UIView *aSubView in moviePlayer.view.subviews)
{
aSubView.backgroundColor = [UIColor clearColor];
}
}
但是
aSubView.backgroundColor = [UIColor clearColor];
似乎正在移除玩家的框架,而不是实际的背景。谢谢你的帮助。
答案 0 :(得分:0)
您应该在这里使用MPMoviePlayerController
,而不是MPMoviePlayerViewController
。后者是一个视图控制器(通常采用模态方式)。
这样,当您将moviePlayer.view作为子视图添加到层次结构中时,您将添加电影播放器视图本身,而不是包含电影播放器的视图(这是您正在看到的黑色平面屏幕)
此外,通过使用MPMoviePlayerController
,您可以将代码中的moviePlayer.moviePlayer
简化为moviePlayer
。