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

wrong reason:
When the ViewController is rendering, the system default StatusBar is NO, and the IOS StatusBar cannot find the cached time image content in the cache.

solution:

Add the system rewrite code in the ViewController class

- (BOOL)prefersStatusBarHidden{
    return NO;
}

Similar Posts:

Leave a Reply

Your email address will not be published. Required fields are marked *