我正在使用 MPMoviePlayerController 播放媒体。它工作正常,但禁用了快进和计时器控件。我有以下代码:
moviePlayer = [[MPMoviePlayerController alloc]initWithContentURL:songUrl];
[moviePlayer.backgroundView setBackgroundColor:[UIColor blackColor]];
moviePlayer.controlStyle = MPMovieControlStyleDefault;
moviePlayer.shouldAutoplay = YES;
[moviePlayer setScalingMode:MPMovieScalingModeNone];
[self.view addSubview:moviePlayer.view];
[moviePlayer setFullscreen:YES animated:NO];
我有以下屏幕截图: