diff --git a/Classes/BITUpdateViewController.m b/Classes/BITUpdateViewController.m index 88ceb4fd86..39cfdc38bd 100644 --- a/Classes/BITUpdateViewController.m +++ b/Classes/BITUpdateViewController.m @@ -119,6 +119,10 @@ tableViewContentHeight += [self tableView:self.tableView heightForRowAtIndexPath:[NSIndexPath indexPathForRow:i inSection:0]]; } tableViewContentHeight += self.tableView.tableHeaderView.frame.size.height; + if (![self.updateManager isPreiOS7Environment]) { + tableViewContentHeight += self.navigationController.navigationBar.frame.size.height; + tableViewContentHeight += [UIApplication sharedApplication].statusBarFrame.size.height; + } NSUInteger footerViewSize = kMinPreviousVersionButtonHeight; NSUInteger frameHeight = self.view.frame.size.height; @@ -206,7 +210,11 @@ if ([appVersion.notes length] > 0) { cell.webViewContent = [NSString stringWithFormat:@"
%@%@
%@
%@
", [appVersion versionString], installed, dateAndSizeString, appVersion.notes]; } else { - cell.webViewContent = [NSString stringWithFormat:@"%@%@
%@
%@
", [appVersion versionString], installed, dateAndSizeString, [appVersion notesOrEmptyString]];