I\'ve created an extremely simple demo app to test the functionality of automaticallyAdjustsScrollViewInsets, but the last cell of the tableView is covered by m
Your view controller must be directly on a UINavigaitonController's stack for automaticallyAdjustsScrollViewInsets to work (i.e. not a child view controller)
If it is a child view controller of another view controller which is on the navigation stack, you can instead set automaticallyAdjustsScrollViewInsets = NO on the parent. Alternatively you can do this:
self.parentViewController.automaticallyAdjustsScrollViewInsets = NO;