I\'ve got a UITabBar based application that works just fine. Under certain circumstances I am showing a different UIViewController instead though. Now what bugs me is that t
Adding the root view to your UIWindow can be complicated since the window always underlaps the status bar. The frame of your root view must therefore be reset to [[UIScreen mainScreen] applicationFrame]
to prevent it from underlapping the status bar as well. We normally don't have to worry about this because UIViewController modifies the frame for us... except when it doesn't. Here's the deal:
I guess Apple figured that -initWithNibName:bundle: wouldn't typically be used to create the window's root view, so it doesn't adjust the frame in your case. Resizing it manually as you have done is fine, and is in fact recommended in the View Controller Programming Guide for iPhone OS, but you should really use [[UIScreen mainScreen] applicationFrame]
since the status bar isn't always 20 pixels tall (e.g. it's taller when you're on a phone call.)
I am assuming that your UITabBarController
is an IB outlet, so that when applicationDidFinishLaunching:
is called, it is already initialized. Try the following: just after instantiating your view controller, do:
[vc setWantsFullScreenLayout:YES];
This is much simpler and also works (iOS 4.0 and later)
MyRootViewController *vc = [[MyRootViewController alloc] init];
[window setRootViewController:vc];
[vc release];
-setRootViewController automatically adds the view of the controller to the window so you don't need to worry about it. The property is (nonatomic, retain) so releasing it after assigning it to the window effectively hands over ownership of the object to the UIWindow and will be released (and consequently deallocated) when the window is deallocated. You could of course create an instance variable and keep a reference to it and release in -dealloc if you want to do stuff with it in the other app delegate methods. I prefer the above method as it takes care of cleanup automatically.
In case you don't know, you can also release view controllers immediately after adding their views to any other view as a subview or presenting a modal view controllers view. Whenever a view is removed or popped off the view stack their corresponding controllers will be released as well.
You don't need to use initWithNibName, just ...alloc] init]; will do.
Just to second what was said above: Here's the code I had to use:
#define MAIN_SCREEN_OFFSET_PIXELS 20
- (void) pushDownViewOnMainScreen {
CGRect r = [[UIScreen mainScreen] applicationFrame];
r.origin.y -= MAIN_SCREEN_OFFSET_PIXELS;
self.view.frame = r;
}
- (void) viewDidLoad {
[self pushDownViewOnMainScreen];
// ...
}