Event when TableView's scroll movement is completed?

You must Login before you can answer or comment on any questions.

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?

— asked 2 years ago by Ali Zige
0 Comments

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!