I have table view inside table view controller and I have last two items invisible, I can see only if I can see only when I scroll up but it again scroll down. I tried to change height of table view like inside viewWillAppear
self.edgesForExtendedLayout = UIRectEdgeAll;
self.tView.contentInset = UIEdgeInsetsMake(0.0f, 0.0f, CGRectGetHeight(self.tabBarController.tabBar.frame), 0.0f);
or
CGFloat bottom = self.tabBarController.tabBar.frame.size.height;
[self.tView setScrollIndicatorInsets:UIEdgeInsetsMake(0, 0, bottom, 0)];
self.tView.contentInset = UIEdgeInsetsMake(0, 0, bottom, 0);
but still last two are invisible by tabs at the bottom of screen (tView is table view).