无需控制即可播放视频

Rui*_*Rui 1 video objective-c media-player ios

如何在全屏播放视频,防止在触摸视频时显示控件(暂停,播放等)?相反,当触摸视频时,我想关闭它.可以这样做吗?

提前致谢

tar*_*ikh 5

MPMoviePlayerViewController *playerViewController=[[MPMoviePlayerViewController alloc]initWithContentURL:[NSURL fileURLWithPath:[[NSBundle mainBundle]pathForResource:@"xyz" ofType:@"mp4"]]];
    [self presentModalViewController:playerViewController animated:YES];
    MpMoviePlayerController *player = [playerViewController moviePlayer];
    player.controlStyle=MPMovieControlStyleNone;   //hide the controls 
    [player play];
Run Code Online (Sandbox Code Playgroud)