Although I have display.setStatusBar( display.HiddenStatusBar ) as the very first line in main.lua there is still a number of seconds that pass when the app loads before the status bar is hidden. I wonder if there is any other way it could be hidden sooner by Corona somehow.
[import]uid: 9371 topic_id: 4535 reply_id: 304535[/import]
I just read the answer to this in another spot on the forum and can’t seem to find the post after 30 minutes of searching and looking.
The answer was to make an entry in a config file. Hopefully someone can connect the two treads. [import]uid: 12635 topic_id: 4535 reply_id: 14423[/import]
Yea you just need to add “UIStatusBarHidden=true” in your build.settings file to fix that. Here is my build.settings file as an example, edit yours as needed as I have a couple extra entries you may not need.
settings = {
orientation =
{
default = "landscapeRight",
},
iphone =
{
plist=
{
UIStatusBarHidden=true,
UIApplicationExitsOnSuspend=true,
},
},
}
[import]uid: 5786 topic_id: 4535 reply_id: 14428[/import]
THANKS! [import]uid: 9371 topic_id: 4535 reply_id: 14453[/import]