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

错误原因:

过程ViewController渲染的时候,系统默认StatusBar是NO,IOS StatusBar在缓存中找不到缓存的时间图像内容。

解决方案:

在ViewController类中添加一下系统重写代码

- (BOOL)prefersStatusBarHidden{
    return NO;
}

你可能感兴趣的:(iOS Status bar could not find cached time string image. Rendering in-process?)