# HG changeset patch # User antonc27 # Date 1444956843 -7200 # Node ID 6e5fd5ea5acbdde6cc110414719cd545a0504fae # Parent cd9a6fd65c8241d5bb2bb4834c61ab432fce8f95 - Fix for autorotation of table view of StatsPageVC - Adjustment for header's height diff -r cd9a6fd65c82 -r 6e5fd5ea5acb project_files/HedgewarsMobile/Classes/StatsPageViewController.m --- a/project_files/HedgewarsMobile/Classes/StatsPageViewController.m Thu Oct 15 23:27:56 2015 +0200 +++ b/project_files/HedgewarsMobile/Classes/StatsPageViewController.m Fri Oct 16 02:54:03 2015 +0200 @@ -29,6 +29,7 @@ -(void) viewDidLoad { UITableView *aTableView = [[UITableView alloc] initWithFrame:self.view.frame style:UITableViewStyleGrouped]; + aTableView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; [aTableView setBackgroundColorForAnyTable:[UIColor clearColor]]; NSString *imgName = (IS_IPAD()) ? @"mediumBackground~ipad.png" : @"smallerBackground~iphone.png"; @@ -118,7 +119,7 @@ } -(CGFloat) tableView:(UITableView *)aTableView heightForHeaderInSection:(NSInteger)section { - return 160; + return (section == 0) ? 160 : 40; } -(UIView *)tableView:(UITableView *)aTableView viewForHeaderInSection:(NSInteger)section {