I am working on an app that has a navigation view controller in a view controller. Everything works fine except for the fact that when it dosen't start in portrait the navigation controller isn't properly sized and takes up the whole screen. I have screenshots how what is happening.
here is what happens when application is started in portrait here
now when the application starts in either landscape right/left or portrait upside down this happen here
I don't know if anyone has a solution for this problem since because it has a space at the top there is always a gap when the rotation occurs.
For more reference i've included some of my code.
-(void)viewDidLoad{
SongsViewController *viewController = [[SongsViewController alloc] initWithNibName:@"SongsViewController" bundle:nil];
dataView = [[UINavigationController alloc] initWithRootViewController:viewController];
[dataView setDelegate:self];
dataView.view.frame = CGRectMake(192, 85, 768 - 192, 1004 - 85 - 44);
[dataView.view setAutoresizesSubviews:YES];
[dataView.view setAutoresizingMask:UIViewAutoresizingNone];
[self.view addSubview:dataView.view];
[viewController release];
}
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation duration:(NSTimeInterval)duration{
if (interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown) {
dataView.view.frame = CGRectMake(192, 85, 768 - 192, 1004 - 85 - 44);
}
else {
dataView.view.frame = CGRectMake(192, 85, 1024 - 192, 748 - 85 - 44);
}
}