MPMoviePlayerController hide next prev buttons

后端 未结 2 1850
梦谈多话
梦谈多话 2020-12-21 08:15

is there an easy (maybe hacky) way to hide the next / prev buttons on apples MPMoviePlayerController?

i dont want to change the skin, just \"hide\" the skip buttons.

2条回答
  •  忘掉有多难
    2020-12-21 08:56

    Do like this,

    MPMoviePlayerViewController *movie = [[MPMoviePlayerViewController alloc] initWithContentURL:url];
    
    movie.view.frame = CGRectMake(0, 0, width, height);
    
    [movie.moviePlayer setControlStyle:MPMovieControlStyleNone];
    

提交回复
热议问题