navigation bar under status bar after video playback in landscape mode

前端 未结 4 1753
无人及你
无人及你 2020-12-24 06:58

The problem:

Navigation bar is under status bar after playing video in landscape mode.

The application:

  • iOS9 only.
  • only supports portr
4条回答
  •  不思量自难忘°
    2020-12-24 07:09

    It's very simple,

    swift 3

    override func viewWillLayoutSubviews() {
       super.viewWillLayoutSubviews();
       UIApplication.shared.isStatusBarHidden = false
    }
    

提交回复
热议问题