ChatGPT解决这个技术问题 Extra ChatGPT

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 iPhone, status bar doesn’t hide, even though it should.

Not Working:

[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationFade];

Not Working:

[UIApplication sharedApplication].statusBarHidden = YES;

Can't login to Apple Developer Forums

Untrue, my answer involved Xcode and that has been shown to the general public. It's too general to say 'if you answer this, it's a breach of NDA' .. let developers decide that for themselves ;-)
possible duplicate of Status bar won't disappear
how to hide status bar programmatically particular ViewController ?

I
Ian Jamieson

in your apps plist file add a row call it "View controller-based status bar appearance" and set it to NO

Note that this simply does not work, if you are using UIImagePickerController in the app.

from http://www.openfl.org/developer/forums/general-discussion/iphone-5ios-7-cant-hide-status-bar/, mgiroux's solution

https://i.stack.imgur.com/dM32P.png


Amazing! I waste hours on this one! Thank you!
For reference, the raw value stored in the actual Info.plist file is called UIViewControllerBasedStatusBarAppearance.
The only problem with this approach is if you use the UIImagePickerController to select images it will force the status bar to appear once more.The only sure fire way to prevent this is to implement the prefersStatusBarHidden method in each of your view controllers and reset the UIViewControllerBasedStatusBarAppearance plist setting to be true.
I really don't know why Apple has changed this ! Thanks :)
You also need to set Status bar is initially hidden to YES.
S
Stunner

Add method in your view controller.

- (BOOL)prefersStatusBarHidden {
    return YES;
}

For all those looking, this is the way to do it if you want to dynamically remove the status bar in certain views. This method works regardless of what you set "View controller-based status bar appearance" to in your plist!
+1 b/c I am looking for the ability to dynamically show/hide the status bar. P-list setting method (see post by @Satgi above) is however the best way to show/hide the status bar globally.
If you have a photo gallery somewhere you usually want to hide the controls only there, and you can turn it on/off as well. This does not work for me, the function is not even called. I have in the same place a preferredStatusBarStyle and is called
@Mr.T In iOS 8, it seems no longer the case. If you have set view controller based status bar appearance to NO and return true from prefersStatusBarHidden in a view controller, it would not work. The status bar still appears.
@Isuru why did you set to NO? If you set to YES it would ask every view controller in other case of course it wouldn't.
S
Stunner

In the Plist add the following properties.

-> Status bar is initially hidden = YES

-> View controller-based status bar appearance = NO

Add both - now the status bar will disappear.


Yep, this worked for me also. Without setting "Status bar is initially hidden" option to YES its not working as expected. Thx.
S
Stunner

To hide Status Bar on a Single view, you should use:

[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationSlide];

At first, this didn't work for me, and then a saw in the documentation of this method that says: // Setting statusBarHidden does nothing if your application is using the default UIViewController-based status bar system.

This has to be done on the plist file, adding the key View controller-based status bar appearance set to NO. And then it worked.


j
jaredsinclair

In order to use the legacy UIApplication method to hide/show the status bar, your app must set a plist value for iOS 7:

View-Controller Based Status Bar Appearance = NO

This value is set to YES by default. If you change it to NO, you can use the legacy methods. If you leave it set to YES, you can still hide the status bar, but it's up to each view controller subclass in your app to override: prefersStatusBarHidden to return YES.

Any time your app needs the status bar appearance or visibility to change, and View-Controller Based Status Bar Appearance is set to YES, your outermost view controller needs to call:

setNeedsStatusBarAppearanceUpdateAnimation


I have had to apply in Custom iOS Target Properties, because in the general plist didn't work
S
Shaik Riyaz

To hide status bar in iOS7 you need 2 lines of code

inapplication:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions write [application setStatusBarHidden:YES]; in info.plist add this View-Controller Based Status Bar Appearance = NO


Just to clean this up, if you're putting this inside didFinishLaunching you can just write [application setStatusBarHidden:YES]; or application.statusBarHidden = YES;
there may be a typo in answer above. "View-Controller Based Status Bar Appearance = NO" did not work for me, but "View controller-based status bar appearance = NO" did work.
S
SaltyNuts

There are so many combinations suggested for this issue, but the problem is that iOS 6 and 7 use different methods to hide the status bar. I have never been successful setting the plist settings to enable the iOS6-style behaviour on iOS 7, but if you are building your app to support iOS 6+, you need to use 3 methods at once to ensure a particular view controller hides the status bar:

// for ios 7 
- (BOOL)prefersStatusBarHidden{
    return YES;
}

// for ios 6
- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    [[UIApplication sharedApplication] setStatusBarHidden:YES];
}
- (void)viewWillDisappear:(BOOL)animated {
    [super viewWillDisappear:animated];
    // explicitly set the bar to show or it will remain hidden for other view controllers
    [[UIApplication sharedApplication] setStatusBarHidden:NO];
}

This should work regardless of your plist settings.


P
Peter Y

I had to do both changes below to hide the status bar:

Add this code to the view controller where you want to hide the status bar:

- (BOOL)prefersStatusBarHidden
{
    return YES;
}

Add this to your .plist file (go to 'info' in your application settings)

View controller-based status bar appearance --- NO

Then you can call this line to hide the status bar:

[[UIApplication sharedApplication] setStatusBarHidden:YES];

S
Sid

Just add these 2 lines in info.plist file. It will make the fix for iOS7 and older version both.

Status bar is initially hidden = YES

View controller-based status bar appearance = NO

Navigate to the project and select Targets -> General and see the "Status Bar style ...Hide during application launch" check box will be checked. This will work.


R
Rajesh Loganathan

Try this simple method:

- (void)viewWillAppear:(BOOL)animated
{
[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationNone];
}

- (void)viewWillDisappear:(BOOL)animated
{
[[UIApplication sharedApplication] setStatusBarHidden:NO withAnimation:UIStatusBarAnimationNone];
}

b
bartburkhardt

The only thing that worked for me is to add the following in your plist

<key>UIStatusBarHidden</key>
<true/>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>

R
Ravi Gautam

The easiest method I've found for hiding the status bar throughout the entire app is by creating a category on UIViewController and overriding prefersStatusBarHidden. This way you don't have to write this method in every single view controller.

UIViewController+HideStatusBar.h

#import <UIKit/UIKit.h>

@interface UIViewController (HideStatusBar)

@end

UIViewController+HideStatusBar.m

#import "UIViewController+HideStatusBar.h"

@implementation UIViewController (HideStatusBar)

//Pragma Marks suppress compiler warning in LLVM. 
//Technically, you shouldn't override methods by using a category, 
//but I feel that in this case it won't hurt so long as you truly 
//want every view controller to hide the status bar. 
//Other opinions on this are definitely welcome

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wobjc-protocol-method-implementation"

- (BOOL)prefersStatusBarHidden
{
    return YES;
}

#pragma clang diagnostic pop


@end

the best real, iOS7, non-fakey solution, great
M
Maulik

In plist add ---- View controller-based status bar appearance --- NO In each viewController write - (void) viewDidLayoutSubviews { CGRect viewBounds = self.view.bounds; CGFloat topBarOffset = 20.0; viewBounds.origin.y = -topBarOffset; self.view.bounds = viewBounds; [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];//for status bar style }

For status bar issue in iOS 7 but target should be 5.1 and above for the app


d
darkheartfelt

Many of the answers on this thread work, but it's my understanding if you're trying to do anything dynamic you'll eventually need to call:

[self performSelector:@selector(setNeedsStatusBarAppearanceUpdate)];

c
chandrika

Steps For Hide the status bar in iOS 7:

1.Go to your application info.plist file.

2.And Set, View controller-based status bar appearance : Boolean NO

Hope i solved the status bar issue.....


o
oscar castellon

For iOS 7 in a single view use in viewWillappear method:

[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:NO];

For display the status bar use:

[[UIApplication sharedApplication] setStatusBarHidden:NO withAnimation:NO];

h
halfer
-(BOOL)prefersStatusBarHidden
{
    return YES;
}

u
user842553

In Info Plist file Add a row for following property

Property Name : View controller-based status bar appearance

Value : NO


B
Bhoopi

Try adding the following method to your app's root view controller:

- (BOOL)prefersStatusBarHidden
    {
        return YES;
    }

R
Ravi Gautam

I tried all these options posted here on my project and they would not work. I thought it could be to do with the fact I had updated my Xcode and then the app to iOS 7 and some settings had got messed up somewhere. I decided To build a completely new project for it and after simple just setting: "Status bar is initially hidden = YES" and "View controller-based status bar appearance = NO" as stated by many others it worked correctly (i.e. no status bar).

So my advice if you are working on a project which has been updated to iOS 7 from an old version and have tried all other options is to build a new project.


I used this same technique to initially confirm that I could hide the status bar globally, for every screen, but as my app is quite "time-centric", I wanted the time display for most screens. It's only one screen I wanted to exclude it for various reasons. I ended up using the opposite of your parameters: initially hidden=NO & VC-based status bar appearance=YES. Then I had to put the (BOOL)prefersStatusBarHidden method (returning YES) into the one VC where I wanted it hidden. Works nicely. I should add that my app is iOS7-only for other reasons.
C
Community

For 2019 ...

To make an app with NO status bars,

Click info.plist, right-click to "Add row".

Add these two, with these settings:

https://i.stack.imgur.com/ve10D.png

That's all there is to it.


A
Alex Nazarov

You can check this code, pod UIViewController+ODStatusBar


I
Irshad Qureshi

For Swift 2.0+ IOS 9

override func prefersStatusBarHidden() -> Bool {
return true
}

L
Lal Krishna

To hide status bar for specific viewController

- (BOOL)prefersStatusBarHidden {
    return YES;
}

For setting status bar Hidden for application:

set View controller-based status bar appearancetoNO in .plist and in application: didFinishLaunchingWithOptions: set: [application setStatusBarHidden:YES]; Note: setStatusBarHidden: deprecated

OR

in Project settings -> General Tab ->Deployment Info Check Hide Status bar box.


E
Evan Ische
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
application.statusBarHidden = YES;
return YES;
}

Question explicitly mentions that this approach doesn't work. Please, read question carefully before answering.
As long as view controller-based status bar appearance is set to NO, it's the cleanest approach.
J
Jake

https://i.stack.imgur.com/3FWFP.png


nope, works like a charm. the forums have been up for a while now.