How to disable scrolling behaviour in UITableView, when the content fits the screen.
self.tableView.scrollEnabled = NO;
or this: if you don't want it to bounce:
tableView.alwaysBounceVertical = NO.