Questions tagged [ios7-statusbar]

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

82 questions
1
vote
0 answers

UINavigationBar without NavigationController ios7

I have a UIViewController with a UINavigationBar at the top. The viewController gets on the screen via a Modal transition. On iOS7 the problem is that the navigationBar doesn't get stretched, and as a result has a static height of 44px. This causes…
Rizon
  • 1,516
  • 4
  • 25
  • 45
1
vote
1 answer

iOS 7 MFMailComposeViewController status bar color

Converting a legacy app for iOS 7. Have most of the problems covered, but we have a feature that emails an error log using MFMailComposeViewController, and the status bar is coming up black on black in that view. The status bar text color is set to…
Hot Licks
  • 47,103
  • 17
  • 93
  • 151
1
vote
1 answer

iOS 7 Status Bar won't go away despite everything set to hide it

I've been having an issue with most of the apps I've been working on where in iOS7 I cannot get the status bar to disappear. It's all perfectly fine for iOS 6.1 and below but nothing I was doing was making it go away. My settings in my Plist look…
justinhartman
  • 682
  • 7
  • 20
0
votes
1 answer

uinaviationcontroller pop animation become weird when status bar was hidden

as picture : when the white controller in popping out with a interactive pop gesture , the red controller (which make the status bar hide) will show, and during the animation : the navigation bar seems to move up , and the controller's view is…
ximmyxiao
  • 2,622
  • 3
  • 20
  • 35
0
votes
3 answers

how to change color of status bar of imagepickercontroller ios?

I need something like this status bar image but i am getting the status hidden but still i can not change the color. I am getting this status bar withour color This is what i am doing. - (void)showGallery UIImagePickerController *picker =…
0
votes
2 answers

Hiding iOS Status Bar's Text

This question is not about hiding the status bar, but merely hiding the text of the status bar. I could nt find it anywhere to approach this problem UBER app does this, when we open the side menu in uber, the status bar text disappear,
JayVDiyk
  • 4,277
  • 22
  • 70
  • 135
0
votes
4 answers

Changing only the body colour of UITableView or changing only the status bar colour

I wanted to get a specific colour to the iOS status bar ,I understand it will take the colour of the top view controllers view . And hence I can get this by applying the colour I want for the status bar to the table view ,which would look like this…
0
votes
1 answer

Xcode 7 and iOS 7.x simulator

After updating to Xcode 7, I can't see the iOS 7.x simulator. So the simulator is no longer supported in Xcode 7? Is there an official way to add the iOS 7.x simulator?
user5235479
0
votes
1 answer

Using StatusBar plugin works on simulator, not device

I'm at my wits end at this point, trying to get past the IOS7 issue whereby the statusbar overlaps the top of my app. The steps I've taken are: phonegap plugins add org.apache.cordova.statusbar Adding the following to my main…
Scott
  • 439
  • 3
  • 9
0
votes
2 answers

How to change Status Bar text color in iOS 8 embeded with UInavigationController?

iOS8.1(xcode 6.1) I used the below method to change the status bar text color. [self setNeedsStatusBarAppearanceUpdate]; -(UIStatusBarStyle)preferredStatusBarStyle{ return UIStatusBarStyleLightContent; } following the link preferredStatusBarStyle…
0
votes
2 answers

Status bar overlaps on my view

I have a UIViewController subclass which when I run the app on iOS 7, the status bar shows on top of my view. Is there a way to avoid this? I do not want the status bar to be hidden. Is there a way to show the status bar above my app. I present my…
0
votes
1 answer

Same code but different colors in Xcode

i set background color of status bar using code below if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) { UIView *view=[[UIView alloc] initWithFrame:CGRectMake(0, 0,320, 20)]; view.backgroundColor = [UIColor…
0
votes
1 answer

Hard time setting color on status bar (iOS7) with transparency

I would like my status bar to be black and be 25% transparent. I understand that the status bar is transparent by default, and therefore takes on the color of the background. However when I set the views backgroundColor: self.view.backgroundColor…
lostintranslation
  • 23,756
  • 50
  • 159
  • 262
0
votes
1 answer

Is there any way to cover an iOS 7 status bar with a UIView temporarily?

I have a bit of a weird scenario here and have been trying to find some help but the solutions don't really solve my problem rather make it worse. I have a container viewController that has three child controllers views inside a horizontal scroll…
0
votes
1 answer

Left menu overlaps status bar

Basically, this is what happens when I click on the left menu button. https://i.stack.imgur.com/g7uq6.png I want it to appear under the status bar and not to overlap it. Here's the code: HomeViewController.m -(void)menuBarButtonItemClick{ …
Mahesh De Silva
  • 505
  • 8
  • 20