Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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 bar could not find cached time string image. Rendering in-process.

comes up every few minutes as long as I have the App running.

It sees to me there is no negative side effect, my App is running, as usual, I have not seen any problems.

I use the standard Status Bar, have not changed to modify it in any way.

Question 1: Would there be a problem originating from this warning under situations i have not come across yet?

Question 2: Does anyone know how I can get rid of this warning?

like image 497
mac_eric Avatar asked Mar 31 '18 09:03

mac_eric


2 Answers

This bug/debug note is present in iOS SDK bundled with Xcode 9.3+

Update: not fixed in Xcode 9.4.1 (9F2000)
Update: not fixed in Xcode 10 (10A255)
Update: not fixed in Xcode 11 betas

I think you can safely ignore it. New versions of iOS/macOS sometimes contain informational debugging messages, and they generally get removed at the next release.

like image 147
Lal Krishna Avatar answered Oct 19 '22 16:10

Lal Krishna


Same issue was occurring for me too. To overcome this, I did this

Goto Target -> Deployment Info -> Unchecked 'Hide status bar'

This one resolved my issue. For me, this was the 'Deployment Info' setup.

enter image description here

like image 13
sRoy Avatar answered Oct 19 '22 17:10

sRoy