When a table has many rows, the user can flick up/down the table. This creates a scrolling animation which seems to have a deterministic length depending on the speed/length of the flick gesture. Is it possible to reliably calculate what rows in the table will be visible once the scrolling stops if there is no further user interaction?
|
|
In iOS 5.0 and later there is a new API for the UIScrollViewDelegate called scrollViewWillEndDragging:withVelocity:targetContentOffset:. With this new method the stop position of the scroll can be calculated and even modified, as explained in the Video Session 100: What's New in Cocoa Touch, around the ninth minute. |
|||
|
|
|
You can even save the initial position from where the deceleration started, so that you can calculate whether the scroll direction was up or down, which will then let you know if is the cell that it will stop is the first or the last of the visible ones.
An important note about the code above is that it points to the table view as a variable |
|||||||||
|
|
Interesting question..... UITableViewDelegate conforms to UIScrollViewDelegate as well: http://developer.apple.com/library/ios/#documentation/uikit/reference/UIScrollViewDelegate_Protocol/Reference/UIScrollViewDelegate.html#//apple_ref/occ/intf/UIScrollViewDelegate There are some delegate callbacks you could use to know when the scrolling begins to decelerate, and ends decelerating. You could probably use |
|||
|
|
|
I dont know how you could determine how many rows WILL show, but you can always get how many rows HAVE shown. (once the table stops w/no further touching.) Not sure if that helps but this is how you would do it
|
|||
|
|