iPhone 4/4S with iOS 7 status bar won't leave!

Well, it would seem that on iPhone 4/4S with the new iOS 7, the top status bar just goes background transparent, but the data (battery, reception and rest) remains on top and gives us hell with any buttons we put in the top angles of the app, anyway to make it go away completely like it should, and like it was before the iOS 7 update, and works just fine on iPhone 5?

Thanks.

Can somebody please give me a hint here? I can’t believe no one had to deal with this issue until now!

Do you have [lua]display.setStatusBar( display.HiddenStatusBar )[/lua] in main.lua and

[lua]settings = {

    iphone = {

        plist = {

            UIStatusBarHidden = true,

        },

    },

}[/lua] in build.settings?

I had the second one in my build.settings, but I didn’t have the first one, for some reason, since I have it on different projects… probably missed it… I’ll try it now with that line and see if it changes.

Thanks!

UPDATE:

Yep, that was the problem, thanks for the heads up :slight_smile:

Can somebody please give me a hint here? I can’t believe no one had to deal with this issue until now!

Do you have [lua]display.setStatusBar( display.HiddenStatusBar )[/lua] in main.lua and

[lua]settings = {

    iphone = {

        plist = {

            UIStatusBarHidden = true,

        },

    },

}[/lua] in build.settings?

I had the second one in my build.settings, but I didn’t have the first one, for some reason, since I have it on different projects… probably missed it… I’ll try it now with that line and see if it changes.

Thanks!

UPDATE:

Yep, that was the problem, thanks for the heads up :slight_smile: