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.
UITableView
The strange part is th
In the UIViewController.h iOS9 SDK have a method:
UIViewController.h
@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; }