iOS7でステータスバーに被る

PhoneGapのバージョンは3.2です。

PhoneGap + jQuery Mobile + iOS SDK7で起きるステータスバー問題に対応する | INOCCU VISION

platforms/ios/CordovaLib/Classes/ のCDVViewController.mを

- (void)createGapView
{
    CGRect webViewBounds = self.view.bounds;

    webViewBounds.origin = self.view.bounds.origin;

    NSString *currentSystemVersion = [[UIDevice currentDevice] systemVersion];
    if ([currentSystemVersion floatValue] >= 7.0f) {
        webViewBounds.origin.y += 20;
        webViewBounds.size.height -= 20;
    }
 
 (後略)

を入れる。