5

i'm getting annoying when i see that bar in top of playing video. How can i hide\unhide status bar in viewcontroller ?

enter image description here

Any help will be appreciated.

Salah
  • 933
  • 3
  • 13
  • 32

1 Answers1

6

In your media player view controller:

override var prefersStatusBarHidden: Bool {
    return true
}
Connor
  • 234
  • 1
  • 11