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 に答える