up vote 28 down vote favorite
30
share [g+] share [fb]

What is the proper way to implement the status bar and navigation bar that go on top of an UIView?

alt text

link|improve this question

25% accept rate
feedback

protected by Will Sep 16 '10 at 10:22

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

6 Answers

Just set “wants fullscreen layout” in your view controller. That solves the problem for me.

link|improve this answer
It seems this is the most simple and effective solution. – St3fan Jul 20 '09 at 22:18
2  
Set in UIViewController subclass with: self.wantsFullScreenLayout = YES; – petert Jun 21 '10 at 11:05
7  
Didn't work for me (using a UINavigationController). I had to set self.navigationController.navigationBar.translucent = YES also. – bentford Jan 14 '11 at 8:11
feedback

In the screenshot above, there's a translucent status bar and a translucent navigation bar.

The status bar is set using

[[UIApplication sharedApplication] setStatusBarStyle: UIStatusBarStyleBlackTranslucent];

The navigation bar is set using

theNavigationController.navigationBar.barStyle = UIBarStyleBlackTranslucent;
link|improve this answer
how to hide the bars on the top and bottom if it is uiwebview in the view controller ?? – thndrkiss Aug 19 '10 at 19:31
1  
This didn't work for me on iPhone Simulator 3.2. From the Xcode Documentation: "Deprecated. Use UIBarStyleBlack and set the translucent property to YES instead." That worked! :) – MattDiPasquale Sep 27 '10 at 0:06
When this was written (Dec. 2008), this was the proper way. Of course, over time the API does change. Your method is now correct. – August Oct 15 '10 at 20:18
As I mentioned in another comment, you may also want to set the backgroundColor property of your navigation bar if you want to match the above image. – zekel Jan 10 '11 at 21:53
I also had to set translucent property to YES before it worked. Can we add this to the answer? – bentford Jan 14 '11 at 8:10
feedback

If you have a view controller inside a navigation controller, and you want to hide the status bar in order to have your viewController's view in full screen, you can always call :

[self.navigationController.view setNeedsLayout];

after hiding the status bar. But I personally think

[self setWantsFullScreenLayout:YES];

is a better way.

link|improve this answer
You may also want to set the barStyle, isTranslucent, and backgroundColor properties of your navigation bar if you want to match the above image. – zekel Jan 10 '11 at 21:52
feedback

The best way I came up was this: when using a "complex" hierarchy of Tab bar containing navigation controllers, with one "detail" view being a full screen view.

In the app delegate just before the tab bar controller's view is added to the window, I added this:

tabBarController.view.frame = [[UIScreen mainScreen] bounds];

This will make the tab bar controller cover the entire screen, even below the area of the status bar. I had to offset heights of several views to +20px, notably the navigation bars.

link|improve this answer
Given the situation of the O/P I have no doubt that this solution works. However, this solution is not very general. If the tabBarController.view is the subview of a view that is not itself a full screen view this solution will not work. Or the paraphrase, the bounds rect has (0,0) as it's origin, so your tabBarController.view will have it's origin point as the same origin of the super view. – SooDesuNe Dec 10 '09 at 4:59
feedback

Set the statusbar style as black translucent and navigation bar style as black translucent. If you are using a navigation-based application, in the MainWindow.xib check the status bar is hidden and navigation bar is hidden checkboxes.

When the user touches the screen, start a timer to see if this was a single tap or double tap. If a single tap, make the statusbar and navbar hidden = NO. and once user activity stops, start a timer again. after some time of no activity, make them hidden again.

link|improve this answer
feedback

Yes but using setStatusBarStyle:animated: to make it black & translucent doesn't seem to cause your UIView to scroll behind the status bar.

Is there a way to do this? The Photos app does it, but of course it might be using undocumented/private APIs.

link|improve this answer
It does when you follow @August answer, (with translucent property set to YES, as stated in comments.) Please put this as a comment instead. – bentford Jan 14 '11 at 8:13
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.