I have a custom UITableView with custom cells (70px height for each cell).
UITableView
I have also a 49px UITabBar, but it\'s hides the tableView.
UITabBar
i don't know what you did exactly, but try like this:
self.edgesForExtendedLayout = UIRectEdgeAll; self.tableview.contentInset = UIEdgeInsetsMake(0.0f, 0.0f, CGRectGetHeight(self.tabBarController.tabBar.frame), 0.0f);
I hope, this will work.