1

我需要你的幫助,請問:我怎樣才能刪除這條線?鉛與mpmovieplayercontroller

enter image description here

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]; 

回答

1

其實我自己也嘗試用相同的代碼。 (除了setMovieControlMode:因爲它被棄用而被刪除)。但我沒有得到那種線。 PL。嘗試與另一個視頻。

+0

這是正確的,應該是被接受並投票決定的解決方案。 – Till