I\'m developing an application based on the Tab Bar application preset. In one of the tabs I have a table view showing a lot of data, but half the last cell in the table vie
Adding a footer space worked for me:
//this prevent the tabbar to cover the tableview space UIView *footer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 1, 90)]; footer.backgroundColor = [UIColor clearColor]; myTableView.tableFooterView = footer;