Questions tagged [ios7-statusbar]

Questions regarding The status bar on iOS 7 devices which overlays the web view

82 questions
1
vote
2 answers

Reproducing Apple effects in the map app sliding the Status Bar

I am trying to replicate the effect in the Map app by which touching the map slides off and on again the top and bottom bars and the status bar along them even on iOS 7 and of course also on iOS 8 in my own app. Of course I have no problems in…
Fabrizio Bartolomucci
  • 4,948
  • 8
  • 43
  • 75
1
vote
0 answers

iOS app status bar is not updating when coming from background to foreground

I'm working on a cordova ios app, i'm facing this weird behaviour with status bar "when ever i push my app to background and turn of the wifi or put the mobile in airplane mode or enable bluetooth, all these action status getting reflected on the…
Madhu
  • 869
  • 1
  • 17
  • 37
1
vote
2 answers

Need to either set status bar to solid color, or add subview to status bar

I am using a UINavigationController and showing navigation bars throughout my app, but I do not want to show a status bar to the user. My problem is if I hide the status bar, then the navigation bar size is not big enough to give the appearance of a…
1
vote
0 answers

UIImagePickerController vs status bar iOS8

I'm subclassing UIImagePickerController in attempt to override its default status bar behavior and having mixed results. My app uses view controller-based status bar appearance. Without subclassing, I'm finding that it changes the status bar style…
1
vote
2 answers

UIWebView scrollView changed it content offset when status bar hides

I have a view in my app (iOS7) where a have such a view controllers hierarchy ViewController->childViewController->childViewController->myChildViewController. myChildViewController has a full sized UIWebView on it. I have a UIButton to hide…
1
vote
2 answers

black colour for status bar in iOS8

I am little bit confused about the status bar behaviour I don't need transparent status bar I need it fixed and black colour. Same like iOS6 I tried a lot, what I get it, its showing black colour only when I launch the app first time, when I rotate…
Sagar
  • 1,286
  • 3
  • 19
  • 34
1
vote
1 answer

How to make statusbar not transparent (storyboard)

I've got a pretty straightforward question and somehow I didn't find an answer on this site yet. I've got a view with a background a yellow color. I'm displaying content in the view and in order for the statusbar to not conflict with the content, I…
bdv
  • 1,154
  • 2
  • 19
  • 42
1
vote
1 answer

How do I fix the gap between my view and my navigation bar when the call status bar is active?

I am using ECSlidingViewController for navigation but I don't believe this is the cause of my problem. Below is an example of my problem. I have tried using viewDidLayoutSubviews to fix this and I have changed the settings for navigationBar…
1
vote
2 answers

How to detect call-in-progress status bar in landscape?

My app needs to detect the presence or absence of the call-in-progress status bar (green). In portrait orientation, the status bar becomes 40px tall when a call is in progress, so a change in the call state triggers the willChangeStatusBarFrame and…
MusiGenesis
  • 74,184
  • 40
  • 190
  • 334
1
vote
1 answer

iOS 7 Status Bar weird behavior

I'm using a UISplitViewController for an iPad app and I get a weird behavior from the StatusBar. Here's how I initialize my RootViewController: if(kIosVersionFloat >= 7.0) [application setStatusBarStyle:UIStatusBarStyleLightContent]; …
PonyLand
  • 115
  • 2
  • 10
1
vote
1 answer

Can't unhide status bar in iOS 7.1

I see people are having problems with hiding the status bar in iOS 7.1, but I have the opposite problem. I'm unable to unhide once it has been hidden. :) This piece of the code works perfectly fine on both iOS 7 and 7.1. It will hide the status bar…
Blob
  • 33
  • 4
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
0 answers

iOS7 statusBar adapt for presentModalViewController

I use code below to adjust view for adapt to statusBar on iOS7 - (void) adjustViewAdaptToiOS7 { if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) { CGRect screen = [[UIScreen mainScreen] bounds]; if…
arachide
  • 8,006
  • 18
  • 71
  • 134
1
vote
4 answers

ios 7 - choosing photo from gallery resets statusBarStyle

I have an iOS 7 app and I have set the status bar text to white in didFinishLaunchingWithOptions as follows: [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent]; I have a webview with a javascript that calls the…
Ketan
  • 487
  • 10
  • 23
1
vote
0 answers

ios 7 auto resize UINavigationController when In-Call status bar is toggle Monotouch

I'm having a problem when the in-call status bar it shows, I have tried. navigationController = new UINavigationController (); navigationController.NavigationBarHidden = true; navigationController.View.AutosizesSubviews = true; …