1

我需要你的帮助:我怎样才能删除这条白线?

在此处输入图像描述

NSString *AppFolderPath = [[NSBundle mainBundle] resourcePath];
NSString *MoviePath=[NSString stringWithFormat: @"/%@/%@", AppFolderPath,pathVideo];
NSLog(MoviePath);
NSURL *movieURL=[[NSURL fileURLWithPath:MoviePath]retain];
    movieController = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
   [self addSubview:movieController.view];
   [movieController setMovieControlMode:MPMovieScalingModeAspectFit];
   [movieController setShouldAutoplay:YES];
   [movieController setFullscreen:YES animated:YES]; 
4

1 回答 1

1

实际上我也尝试过使用相同的代码。(除此之外, setMovieControlMode: 已被删除,因为它已被弃用)。但我没有得到那种线。PL。尝试另一个视频。

于 2011-07-13T12:44:05.380 回答