UIStatusBarHidden IOS 4.2.1 Ipad

Hi,

I am running the latest version of Corona Game Edition 2010.109 and just updated my Ipad to IOS 4.2.1 and I am seeing the following issues:

Calling: display.setStatusBar( display.HiddenStatusBar ) hides the status bar AFTER the app has launched. I tried setting the code below in the build.settings files but it has no effect.

iphone =
{
plist = { UIStatusBarHidden = true }
}

A quick test: I commented the display.setStatusBar( display.HiddenStatusBar ) inside main.lua in the Jungle Scene sample app (which has the UIStatusBarHidden property set to true inside build.settings) and now the status bar doesn’t disappear at all.

Thanks.

Jessee [import]uid: 10841 topic_id: 3927 reply_id: 303927[/import]

Just to clarify, there are two issues:

  1. display.setStatusBar( display.HiddenStatusBar ) hides the status bar after the app has launched. You can see the status bar disappearing.

  2. This entry inside the build.settings file plist = { UIStatusBarHidden = true } has NO effect. [import]uid: 10841 topic_id: 3927 reply_id: 11976[/import]

Here are my build settings that make this work. Note it doesn’t seem to work in Simulator

[code]

settings =
{

orientation =
{
default = “portrait”,
supported = {“portrait”, “portraitUpsideDown”},
},

iphone =
{
plist =
{
UIApplicationExitsOnSuspend = true,
UIPrerenderedIcon = true,
UIStatusBarHidden = true,
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“Icon.png”,
“Icon@2x.png”,
“Icon-72.png”,
“Icon-Small-50.png”,
“Icon-Small.png”,
“Icon-Small@2x.png”
}
},
},

}

[/code] [import]uid: 7863 topic_id: 3927 reply_id: 26399[/import]