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

|
What is the proper way to implement the status bar and navigation bar that go on top of an UIView?
| |||
|
feedback
|
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.
|
Just set “wants fullscreen layout” in your view controller. That solves the problem for me. | |||||||||||
feedback
|
|
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
| |||||||||||||
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 :
after hiding the status bar. But I personally think
is a better way. | |||
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:
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. | |||
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. | |||
|
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. | |||
feedback
|