In my cocos2d v3 app for iOS I ran into misunderstanding of how to stop scrolling animation of CCScrollView object. I have tried some combinations of calls to its methods with no success, like
[_scrollView setScrollPosition:_scrollView.scrollPosition animated:NO];
[_scrollView stopAllActions];
[_dataListNode stopAllActions];
where _dataListNode is a ContentNode of CCScrollView
What is the correct way?
The only way to stop scrolling animation which I have found by patching CCScrollView object
I am still searching for better way