iPhone - ModalViewController not raising to top of the screen

Posted by Oliver on Stack Overflow See other posts from Stack Overflow or by Oliver
Published on 2011-03-16T23:38:54Z Indexed on 2011/03/19 16:09 UTC
Read the original article Hit count: 330

Hello,

I have a UIImagePickerController that is shown

[self presentModalViewController:self.picker animated:NO];

Then later on the code, I allow the user to display a preference panel :

PreferencesController *nextWindow = [[[PreferencesController alloc] initWithNibName:@"Preferences" bundle:nil] autorelease];
UINavigationController* navController = [[[UINavigationController alloc] initWithRootViewController:nextWindow] autorelease];
[self presentModalViewController:navController animated:YES];

At this point, the new controller raises on the screen, but don't go to the top. Some space is left "transparent" at the top (I can see the camera view behind), and the bottom of the view is hidden out of the screen. The space I am talking about is about a status bar height. The status bar is not present on the screen.

The navigation controller is hidden :

self.navigationController.navigationBarHidden = YES;

There is a toolbar at the top of the view. Nothing special into the view. The height of the view is defined at 480. All simulated element are set off in IB. The autoresize properties are all set on.

I had a previous xib (I rebuilt it from scratch) that worked very well. I don't see what I missed on this one (I have only changed the xib, that replaces the previous one).

I've cleaned the cache to be sure there was nothing left. No change... I've deleted everything in the new view to prevent some conflicts. No change...

What did I miss ? How could I remove this empty space ?

© Stack Overflow or respective owner

Related posts about iphone

Related posts about display