Navigation based app, launched a modalview with code like:

[self presentModalViewController:bookmarkAddViewController animated:YES];
[bookmarkAddViewController release];

In portrait mode, keyboard raised, no problem; but in landscape mode, there is a white bar on top of raised keyboard. Why this happen, and how to fix it?!

PS: not able to attach image due to lack of points. sigh... why SO making things so difficult while its whole purpose is trying to help people.

link|improve this question

20% accept rate
feedback

1 Answer

It is possible that your autoresize mask is not set properly. Double check this in the nib. Select the main view for bookmarkAddViewController and click on the ruler. Make sure the resize masks bits are set correctly (all on).

That might not be the problem, but worth a shot.

link|improve this answer
Thanks @logancautrell, in fact the problem is in the nib. I choose 'landscape' mode, and I see the white bar, just make my table view bigger and the problem is solved. – Espina Oct 28 '11 at 4:20
Please accept my answer then :) – logancautrell Oct 28 '11 at 4:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.