Top "Statusbar" questions

A status bar is an area typically found at the bottom of Graphical User Interfaces that provide information about the computer, the application or other applications.

How to change Status Bar text color in iOS

My application has a dark background, but in iOS 7 the status bar became transparent. So I can't see anything there, …

ios swift ios7 statusbar uistatusbar
Height of status bar in Android

What's the height of the status bar in Android? Is it always the same? From my measurements it seems that …

android statusbar
Android Completely transparent Status Bar?

I've searched the documentation but only found this: Link. Which is used to make the bar translucent? What I'm trying …

android statusbar
Changing the Status Bar Color for specific ViewControllers using Swift in iOS8

override func preferredStatusBarStyle() -> UIStatusBarStyle { return UIStatusBarStyle.LightContent; } Using the above code in any ViewController to set the statusBar …

swift uiviewcontroller ios8 xcode6 statusbar
How to hide iOS status bar

In my iOS video app status bar is hidden in some view controllers. I have done this using following code. [[…

ios7 show-hide statusbar
iOS 7 status bar back to iOS 6 default style in iPhone app?

In iOS 7 the UIStatusBar has been designed in a way that it merges with the view like this: (GUI designed …

ios objective-c ios7 statusbar
Change status bar text color to light in iOS 9 with Objective-C

In iOS 9, how do I change the color of the status bar text to white?

objective-c ios9 xcode7 statusbar
Cannot hide status bar in iOS7

I just upgraded my iPhone 5 iOS 7 to four beta version. Now when I run my app from Xcode 5 on this …

objective-c statusbar ios7
What is the height of Navigation Bar in iOS 7?

I 've just created a simple iOS 7 app using the default Master Details template. In the MasterViewController.m, viewDidAppear method, …

ios7 height frame statusbar navigationbar
How to hide a status bar in iOS?

I can hide a status bar in my app: - (void)viewDidLoad{ [[UIApplication sharedApplication] setStatusBarHidden:YES]; [super viewDidLoad]; } When I …

ios statusbar