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

|
6
|
What is the proper way to implement the status bar and navigation bar that go on top of an UIView?
|
||
|
|
|
|
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 :
after hiding the status bar. But I personally think
is a better way. |
||
|
|
|
|
THANK YOU @Alfons that really WORKS. I was looking for this solution. I guess it could be nice tip even for middle level developer. |
||
|
|
|
|
Just set “wants fullscreen layout” in your view controller. That solves the problem for me. |
||
|
|
|
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:
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. |
||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
In the screenshot above, there's a translucent status bar and a translucent navigation bar. The status bar is set using
The navigation bar is set using
|
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|