Questions regarding The status bar on iOS 7 devices which overlays the web view
Questions tagged [ios7-statusbar]
82 questions
2
votes
0 answers
App UI Change it's Position when Skype call started
My problem is UI of app not showing as it is when I started Skype call.
App move down little bit. that's why I can't see some text on tab.
I don't wan't this behaviour.
is it possible when Skype call started it override on app header?

Vinod Jadhav
- 1,055
- 1
- 15
- 37
2
votes
2 answers
Show status bar AND prompt notification drop down
In iOS if you vertically swipe from off the screen onto the screen you will get the notification screen to drop down.
If you set your status bar to hidden (full screen app) then swipe down you get a prompt drop down "tab", which is so nice! (See…

Albert Renshaw
- 17,282
- 18
- 107
- 195
2
votes
1 answer
How to make NavigationBar and StatusBar same background in iOS 7?
I use Xcode 5 to create a master detail project. The default navigation bar looks like this:
Now I create a new UIViewContrller file and its xib file:
I add a NavigationBar to the view, and set background color green, but the status bar area is in…

qichunren
- 4,405
- 7
- 37
- 48
2
votes
0 answers
IOS 7 Statusbar showing when switching between apps
I've run into something strange with an iPad app I'm currently working on. I have set the statusbar hidden with :
[UIApplication sharedApplication].statusBarHidden = YES;
in the AppDelegate.m
However when I switch between active apps on the device…

Nandanduu
- 31
- 3
2
votes
0 answers
ViewController orientation not coherent with status bar
My app has this main structure: UITabBarController, where each tab hosts a UINavigationController that pushes views according to user interaction. Almost all the app is portrait orientation only, except a few specific sections.
The behavior I want…

invalidArgument
- 2,289
- 4
- 24
- 35
2
votes
0 answers
How to handle double-high status bar that appears when a phone call/skype call etc is in progress?
How can I fix the layout issue when I am on a Phone call and open my iOS app? The app's view is being pushed down by 20px or so when the phone bar appears on top of the screen. In my storyboard, the UIView is marked Fixed (not freeform). Blue color…

ilight
- 1,622
- 2
- 22
- 44
2
votes
5 answers
ios 7 status bar not inheriting nav bar color
I am having trouble figuring out how to get the status bar in ios 7 to use the color of my nav bar. I am using UINavigationController in conjunction with the SWRevealController library for the sliding menu nav.
This is how a page looks right…

Atul Bhatia
- 1,633
- 5
- 25
- 50
2
votes
1 answer
Show and hide status bar + change status bar text color between view controllers in iOS
Yet another question about the iOS 7 status bar coloring and visibility... in my solution I want to have all these things:
The status bar is to be hidden and shown (with animation) on a view controller in response to user actions (as they slide…

Mick Byrne
- 14,394
- 16
- 76
- 91
2
votes
2 answers
iOS7 Status Bar Font Color for Modal View
I'm trying to change the font color of the status bar in one of my modal views to white. The other views are set to be white in the app delegate.
I've tried the following code found in an answer to a similar question in the ViewController.
-…

user3272982
- 21
- 1
2
votes
2 answers
IOS7 upgrade - Status bar not hiding on iPad
Hi I'm upgrading my Universal app from iOS6 to iOS7.
I'm hiding the status bar by using this inside .plist file:
-> Status bar is initially hidden = YES
-> View controller-based status bar appearance = NO
Then inside my AppDelegate…

luca
- 36,606
- 27
- 86
- 125
1
vote
1 answer
Ionic: cannot change iOS status bar color in dark mode
I'm build a progressive web app in Ionic which I want to add to my homescreen and change the background color and text color of the iOS status bar.
What I've done
I installed:
"@ionic-native/status-bar": "^5.0.0"
In index.html I defined:

vdvaxel
- 137
- 1
- 2
- 11
1
vote
1 answer
How to set iOS status bar background color in Bootstrap?
Is there a workaround that could help me mimic a background color in the status bar of a PWA on an iOS device once the app is installed to the homescreen?
I have currently set the apple-mobile-web-app-status-bar-style meta tag to "black-translucent"…

roki
- 21
- 2
1
vote
1 answer
Hide status bar but not custom UIWindow
I have a custom UIWindow that is my own status bar, so I want to hide the status bar and show mine instead. I have
override var prefersStatusBarHidden: Bool {
return true
}
In both my UIWindow's rootViewController and the main ViewController.…

IHaveAQuestion
- 789
- 8
- 26
1
vote
0 answers
iOS7 UIWindow wrong height after status bar hidden
I added an UIWindow with a subView of an UIView to current key window.
CGFloat width = 35;
self.window = [[UIWindow alloc] initWithFrame:CGRectMake(0, [UIScreen mainScreen].bounds.size.height - width, width, width)];
self.window.backgroundColor…

jojoT
- 153
- 15
1
vote
1 answer
How to configure the StatusBarOverlaysWebView phonegap plugin to prevent the status bar from overlapping the app content
I cannot get it to work. I have added the plugin to the directory via the phonegap CLI, and inserted:
into config.xml in the ios platform block, but the status bar still overlays the…

Nathan
- 246
- 1
- 4
- 10