iPad MPMoviePlayerController - Disable Fullscreen

后端 未结 16 2123
一向
一向 2020-12-06 01:38

Is there a way to disable the fullscreen button of the MPMoviePlayerController ?

16条回答
  •  旧时难觅i
    2020-12-06 01:55

    You could hide the playback controls and add your own custom ones, this will prevent the default buttons being rendered at all

    I.e with

    [player setMovieControlMode:MPMovieControlModeNone];
    

提交回复
热议问题