Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I don't mean that I want to disable scrolling. I want to be able to programmatically tell the table to immediately stop moving (but then it should still be scrollable after than). Is this possible?

share|improve this question
Try looking at this link: stackoverflow.com/questions/986392/… This could also work: [tableView setContentOffset:tableView.contentOffset animated:NO]; Hope it helps. :) – iLive Apr 17 '12 at 20:11

1 Answer

up vote 18 down vote accepted

A UITableView is a subclass of UIScrollView. If you tell it to scroll to its current position, it will stop scrolling so this should work for you:

[tableView setContentOffset:tableView.contentOffset animated:NO];
share|improve this answer
Well, that sort of worked, but it only works to stop the table from scrolling. If the table doesn't have enough rows to actually scroll, if I pull down it will still bounce a little bit, which triggers the scrollViewDidScroll: call, which I'm trying to prevent from happening by stopping the scrolling – MusiGenesis Apr 17 '12 at 21:02
2  
In that case you should disable scrolling if the table view does not have enough rows. – ndfred Apr 17 '12 at 21:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.