I want to set a TableView to a certain row once its movement stopped (after swiping the list). Therefore I need to find out when it is completed.
How can I do this?
1 Answer
Accepted Answer
TableView.addEventListener('scrollEnd', function() { Ti.API.warn('This will fire when scrolling completes.'); });
Your Answer
Think you can help? Login to answer this question!