If you updated the application to use PhoneGap 2.1 from another version, the MainViewController.m file may not be up to date.
It should have the following code:
#pragma mark - View lifecycle
- (void)viewWillAppear:(BOOL)animated
{
self.view.frame = [[UIScreen mainScreen] applicationFrame];
[super viewWillAppear:animated];
}
As soon as you have this feature, your application will return to normal operation.
( )