在我的 iOS 版 cocos2d v3 应用程序中,我误会了如何停止 CCScrollView 对象的滚动动画。我尝试了一些对其方法的调用组合但没有成功,比如
[_scrollView setScrollPosition:_scrollView.scrollPosition animated:NO];
[_scrollView stopAllActions];
[_dataListNode stopAllActions];
其中 _dataListNode 是 CCScrollView 的 ContentNode
正确的方法是什么?