MPMoviePlayerController hide volume slider

I was wondering if anyone knew of a way to hide the volume slider while playing a video in fullscreen mode but retaining the standard controls such as play/pause, previous/next etc

Thanks

Upvotes: 0

Views: 911

Answers (1)

manikal
manikal

Reputation: 973

Just a suggestion, totally untested :)

for (UIView *view in [volumeSlider subviews]) {
      if ([[view isKindOfClass:[MPVolumeSlider class]]) {
        [view setHidden:YES];
  }
}

Upvotes: 1

Related Questions