iOS 7 UITableView: How to remove space between navigation bar and first cell

前端 未结 15 2361
Happy的楠姐
Happy的楠姐 2020-12-04 07:15

Description of the problem: with iOS 7 in grouped UITableView there is a gap between the top of the table view and the first cell.

The strange part is th

15条回答
  •  Happy的楠姐
    2020-12-04 07:53

    In the UIViewController.h iOS9 SDK have a method:

    @property(nonatomic,assign) BOOL automaticallyAdjustsScrollViewInsets NS_AVAILABLE_IOS(7_0); // Defaults to YES
    

    is not a property, so

    self.automaticallyAdjustsScrollViewInsets = NO; 
    

    should be

    -(BOOL)automaticallyAdjustsScrollViewInsets{   
         return NO;
    }
    

提交回复
热议问题