I\'m trying to limit the scroll speed of my UITableView, exactly like Instagram does it.
If you check out Instagram, you\'ll notice that they have a limit on how fast yo
Use this:
self.tableview.scrollView.decelerationRate = UIScrollViewDecelerationRateFast;
As tableView is a subclass of UIScrollView, ScrollView delegate will work here. Hope this helps.. :)
Edit:
if tableView doesn't show scrollView property use:
self.tableView.decelerationRate