MPMoviePlayer controlStyle

后端 未结 4 771
情话喂你
情话喂你 2021-01-21 10:54

I want to hide the controls from the MPMoviePlayer with this code:

-(IBAction)video:(id)sender {

NSBundle *bundle = [NSBundle mainBundle];
NSString *moviePath =         


        
4条回答
  •  没有蜡笔的小新
    2021-01-21 11:34

    You are repeating code. MPMoviePlayerViewController has MPMoviePlayerController. So use it as movieplayervc.moviePlayer.controlStyle = MPMovieControlStyleNone;

提交回复
热议问题