I have a universal binary app for iPhone / iPad. In console I always get this log:
UIStatusBarStyleBlackTranslucent is
not available on this device. Ignoring
UIStatusBarStyle key in Info.plist.
Must I be worried about anything now? There’s just one info.plist for both, right? How could I stop this log to happen? I guess it spams up the crashlogs if I leave it in there?
There is just one plist. It may be possible to specify a different value for the iPad for that key but I’m not sure if it’s supported for that key.
It doesn’t sound like a huge deal really. You could just remove it from the plist and set it programmaticly. It looks like if you try to set it on an iPad it just sets the status bar to black, so there’s not too much reason to even check the UI idiom….
Anyway, see the Information Property List Key Reference docs if you want to try it.