I have this function I use on my collection view:
func scrollViewWillEndDragging(scrollView: UIScrollView, withVelocity velocity: CGPoint, targetContentOffset: UnsafeMutablePointer<CGPoint>){
}
It doesn't seem to work now that I have converted over to using AsyncDisplayKit. The collection view is not an ASCollectionView and that function doesn't give any errors but it just doesn't work now. In the docs I read about scrollNode but I'm not sure if that replaces scrollview. It sounds more like it wraps around it so I don't see why scrollView can no longer be accessed.