Allow video on landscape with only-portrait app

前端 未结 8 1416
没有蜡笔的小新
没有蜡笔的小新 2020-12-13 06:35

I have a UIWebView included in a UIViewController which is a descendant of UINavigationController. It looks like this:

8条回答
  •  星月不相逢
    2020-12-13 07:16

    It's very simple, as it says @Stanislav Pankevich, but in

    swift 3 version

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

提交回复
热议问题