Is there a way to control the animation on a UITableView scrollToRowAtIndexPath?

I would like to change the duration of the animation and attach a callback that will be called when the animation ends when calling scrollToRowAtIndexPath with the animated: YES, but I cannot find the handle of its animation proxy or any other way to do this.

Does anyone know if this is possible?

+7
objective-c iphone cocoa-touch uitableview
source share
1 answer

In the TableView delegate , do

-scrollViewDidEndScrollingAnimation:

This will trigger a call after the scroll animation has completed.

+6
source share

All Articles