vote up 6 vote down star
6

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

alt text

flag

9 Answers

vote up 0 vote down

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|flag
vote up 0 vote down

THANK YOU @Alfons that really WORKS. I was looking for this solution. I guess it could be nice tip even for middle level developer.

link|flag
vote up 6 vote down

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

link|flag
It seems this is the most simple and effective solution. – St3fan Jul 20 at 22:18
vote up 1 vote down

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|flag
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 at 4:59
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 6 vote down

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|flag
vote up 0 vote down

If you really want to overlay the status and nav bars atop a UIView, the only thing you can do is to not use the UINavigationController, but place the nav bars on yourself and react to button presses with your own methods.

That only helps with the nav bar, the status bar cannot be underlaid unless possibly you traverse the views over the main UIWindow (suoerviews) and alter them.

link|flag
vote up -3 vote down

Not sure what you mean by "implement"... they're components provided in prefab form by the Cocoa Touch API's. You control the behavior of the status bar with UIApplication methods such as setStatusBarHidden:animated:, and you can get a navigation bar either by manually creating a UINavigationBar, or by using a UINavigationController.

link|flag
UINavigationController definitely couldn't overlay its navigation bar on top of a view tho. – leonho Dec 17 '08 at 8:56

Your Answer

Get an OpenID
or

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