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
0
votes
1 answer
How to fix overlapped status bar which mess with child view controller?
I am making a sliding menu. But when I slide-open and slide close, the front view controller's navigation bar overlaps with system status bar.
if (should_hide_status_bar)
{
[[UIApplication sharedApplication] setStatusBarHidden:is_going_to_open…

eonil
- 83,476
- 81
- 317
- 516
0
votes
1 answer
lock and unlock status bar rotation based on a condition
I simply want to lock rotation for the status bar when some conditions are fulfilled:
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
if (toInterfaceOrientation…

Malloc
- 15,434
- 34
- 105
- 192
0
votes
2 answers
Statusbar color on iPad with iOS6
I noticed that statusbar tint properties is selectable only in iPhone project summary, but I would like to tint my status bar on an iPad app, is it possible to do? I can't find any method

Sparviero
- 664
- 1
- 7
- 14
0
votes
1 answer
UIStatusBar Color same as UINavigationBar
I'm looking for a simple thing, but it seems harder then i thought!
I want to change the StatusBar color of my iPhone to be the exact same solid color as my NavigationBar. Kind of the same principle as in iOS7, but now in iOS6
Anyone who could help…

JorisDubois
- 1
- 1
0
votes
1 answer
iOS: Status bar and Navigation bar: Space or Underlaying
How to manipuate with status bar and navigation in canonical way?
So, my goal is to hide and appear status bar and navigation bar in the same time.
What I should do in canonical way, avoiding space between them, avoiding underlaying (status bar lay…

gaussblurinc
- 3,642
- 9
- 35
- 64
0
votes
1 answer
How to add a blinking Image on statusbar while app running in Background state in iphone
I need to show a Blinking image that indicates some state of my application while running in background mode like media player showing symbol when playing.
Can any one please help me out !
Thanks in advance.

Youngwing
- 577
- 2
- 6
- 24
0
votes
1 answer
ADBannerView causes interface orientation mixup
I have integrated iAd banner and iAd interstitial ads in my app, and i'm getting a weird behavior, when clicked and then rotates to landscape , after dismissal of the ad, weird things happen :
First, the status bar stays in landscape(my app is only…

user1130254
- 155
- 2
- 9
0
votes
1 answer
How to compensate for hidden status bar in modal view over tabbed nav view
I have a UiTabbar controller with 4 views. I Also have a button that I added (to the tab bar). That presents a modal view controller. in the viewDidAppear method of my modal view controller I have the following code
[self…

user379468
- 3,989
- 10
- 50
- 68
0
votes
1 answer
How to disable android's status bar scroll down animation?
Even in a Samsung Galaxy Note 2, when you pull down the scroll bar, it takes some time to shown down and if you did not pulled it enough it comes back to the top (hides again).
So how do we disable this unnecessary animation (in consideration that…

NaN
- 8,596
- 20
- 79
- 153
0
votes
4 answers
UIWebView in full screen hides status bar
I am opening video in UIWebView with following code.
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
NSLog(@"Navigatin Type %d %@",navigationType,…

iPhone
- 4,092
- 3
- 34
- 58
0
votes
1 answer
UIStatusBar + toggling full frame video + rotations = frame problems
My video (AVPlayer instance) plays in a smaller "minimized" window to start. Touch the screen to show the controls, and allow the user to expand it to full screen, which covers the status bar. I'm giving the viewController this for its full…

coco
- 2,998
- 1
- 35
- 58
0
votes
2 answers
UIView is not autoresized after I hide the UIStatusBar
I have a ViewController which need to hide the status bar sometimes. The problem is the view of the UIViewController is not autoresized after the status bar is hidden. (Actually I have another application use the exactly the same View Controller.…

Bagusflyer
- 12,675
- 21
- 96
- 179
0
votes
4 answers
How to hide status bar automatically after load view
guys,
I want to hide the status bar in the code. After loaded view, the status bar will show and it will automatically hide after a while. How to do that?

user1502286
- 27
- 1
- 1
- 3
0
votes
2 answers
iPad App behavior: a navigationcontroller with a tabbarcontroller with more tabs
For the impatient:
I want to have a navigationcontroller who's root viewcontroller is a tabbarcontroller, similar to the iPad application. I am using IOS 5 and Storyboards.
For the reading inclined:
In my storyboard I have 6 tabs in a…

Tom Fobear
- 6,729
- 7
- 42
- 74
-1
votes
2 answers
Can not override the preferredStatusBarStyle
In dark mode style, the status bar disappear cause of dark color.
I added the:
override var preferredStatusBarStyle: UIStatusBarStyle {
return .lightContent
}
but the problem is, when I add the method in "viewDidLoad" I get the…

Steven
- 762
- 1
- 10
- 27