Search code examples
iphoneiostableview

How to disable scrolling in UITableView when the content fits the screen?


How to disable scrolling behaviour in UITableView, when the content fits the screen.


Solution

  • self.tableView.scrollEnabled = NO;
    

    or this: if you don't want it to bounce:

    tableView.alwaysBounceVertical = NO.