When using a UITableViewController, the initWithStyle: method automatically creates the underlying UITableView with - according to the documentation - \"the correct dimensio
i fixed this problem by this code
{ UIEdgeInsets insets; insets.left = 0; insets.right = 0; insets.top = 0; insets.bottom = 60; self.tableView.contentInset = insets; [self.tableView setScrollIndicatorInsets:insets]; }