Status bars display a collection of status items that provide interaction with or feedback to the user, such as a menu or an image reflecting an application’s state. A system-wide status bar resides at the right side of the menu bar and is the only status bar currently available.
Questions tagged [uistatusbar]
449 questions
1
vote
0 answers
iOS 7 Displaying Status bar on Certain Views/Status Bar Cutting over View
I have an app where all of the views, except one, needs a status bar displayed on top. After spending time googling and searching here, I cannot find a solid answer that works.
Right now, with View controller-based status bar appearance set to YES,…

128keaton
- 17
- 5
1
vote
1 answer
Prevent Action button UIActivityViewController changing status bar text color
I've implemented an Action (Share) button in a toolbar of my application. Upon tapping it, the action sheet - UIActivityViewController - pops up as expected, but it changes my previously black status bar text to white automatically. How do I prevent…

Jordan H
- 52,571
- 37
- 201
- 351
1
vote
2 answers
UIImagePickerController not always Fullscreen (strange Statusbar behavior)
i need a UIImagePickerCOntroller, so that the User can take some photos. This is my Code:
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
UIImagePickerController * imagePicker = [[UIImagePickerController…

Davis
- 1,253
- 4
- 17
- 38
1
vote
2 answers
iOS Status Bar Won't Stay Light
In my App Delegate I have the following code, but it stays completely dark above the navigation bar, where you can't see anything. If I remove the background image for the navigation bar, it properly shows it as light content, but I'm not sure what…

user717452
- 33
- 14
- 73
- 149
1
vote
0 answers
iOS iPad Simulator displays status bar
I set the status bar to be hidden but it is still being displayed. how can i change that?
oh and i already checked the info.plist file but it says hidden: YES
thanks for help

LinusGeffarth
- 27,197
- 29
- 120
- 174
1
vote
1 answer
How do I arrange the status bar to always be on top?
I'm sure this is a quick fix or there is some setting but for some reason I can't find an answer anywhere.
The UIImageView I have on the screen always is arranged above the status bar, even if I send it to the back as shown in the image.
How can I…

Eric Smith
- 1,336
- 4
- 17
- 32
1
vote
1 answer
Status bar font changes in iOS 6.1
I have this weird issue, in iOS 7 my application UIStatusBar looks like that:
But in iOS 6.1 the UIStatusBar looks like that:
So, I know what is the problem, it's because I'm overriding systemFontOfSize and boldSystemFontOfSize:
#import…

ytpm
- 4,962
- 6
- 56
- 113
1
vote
1 answer
UINavigationBar clips top content
I have added a custom titleView to my UINavigationItem, and that contains a view that is intended to be under the status bar. It looks fine, and when I push another viewcontroller and that transitions away in the standard right-to-left animation it…

Erik Rothoff
- 4,826
- 9
- 41
- 59
1
vote
1 answer
iOS7 how to completely hide status bar throughout app?
I'm building a sprite kit game, and normally status bar does not show within my app. However, the drag and drop code that I'm using is doing something with the window and when the item is being dragged, the status bar flickers on and off. So my…

Alex Stone
- 46,408
- 55
- 231
- 407
1
vote
1 answer
Changing UIStatusBarStyle when user uses UISearchBar
I've been trying to fix this all day. My app has a night theme, but the problem happens when you touch in the area between the keyboard and UISearchBar after it shows it's results, because this doesn't trigger the UISearchBar's cancel method.…

klcjr89
- 5,862
- 10
- 58
- 91
1
vote
1 answer
How to add custom navigation bar to a full-screen VC in iOS 7 and make it tint the status bar to match?
In an app I'm developing (Xcode 5, >=iOS 7 auto-layout), I push a modal view controller. I want the modal view controller to have a navigation bar, so I add one, and add a constraint that positions it with it's top aligned with the top layout…

Duncan C
- 128,072
- 22
- 173
- 272
1
vote
0 answers
navigation bar and status bar issue
I am new to iOS.
I've created a xib file that contains a Navigation Bar (with title and a button) and a TableView.
In iOS 7 the navigation bar overlaps with status bar.
Is there a way I can programatically move the title and the button from the…

just ME
- 1,817
- 6
- 32
- 53
1
vote
0 answers
iOS 7, resize UINavigationController, keep UINavigationbar 64px height
My viewcontrollers hierarchy is: UIViewController -> UITabBarController -> UINavigationController -> UIViewController.
I want to show a banner moving down and shrinking UITabBarController. My problem is when I want to hide the banner and put to…

CeliaTlk
- 11
- 2
1
vote
3 answers
self.window not working inside view controller
For iOS 7, I had status bar problem. For that I solved it by using below code in Appdelegate
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {
[[UIApplication sharedApplication] setStatusBarStyle: UIStatusBarStyleLightContent];
…

Fahim Parkar
- 30,974
- 45
- 160
- 276
1
vote
3 answers
iOS 7 staus bar issues
I have an application with status bar hidden. For hiding status bar I did following things:
[[UIApplication sharedApplication] setStatusBarHidden:YES];
This was working with ios 6. Now in iOS 7 I added View controller-based status bar appearance…

Kapil Choubisa
- 5,152
- 9
- 65
- 100