I had this problem, and found a solution here:
http://www.iphonedevsdk.com/forum/ip...tml#post165423
Code:
- (void)viewWillAppear:(BOOL)animated {
// to fix the controller showing under the status bar
self.view.frame = [[UIScreen mainScreen] applicationFrame];
}