Status bar could not find cached time string image. Rendering in-process

前端 未结 6 1422
隐瞒了意图╮
隐瞒了意图╮ 2021-01-30 07:50

I get the above runtime message after I upgraded to Swift4.1 and Xcode 9.3. Before the upgrade I did not have this message in my console window.

Status ba

6条回答
  •  抹茶落季
    2021-01-30 08:43

    In my case, it was hiding navigation bare by

    self.navigationController?.isNavigationBarHidden = false

    When you are hiding the navigation bar, it hides status bar too!. just use

    self.navigationController?.navigationBar.isHidden = true

    instead. And you will have your status bar back.

提交回复
热议问题