I’m using uicollectionview in storyboard.
When uicollectionview scroll down i want get how scrolled down In pixels
For example, if i swipe one finger, return 200 pixels.
Is it possible?
I’m using uicollectionview in storyboard.
When uicollectionview scroll down i want get how scrolled down In pixels
For example, if i swipe one finger, return 200 pixels.
Is it possible?
you can get the scroll event with
UIScrollViewDelegateandNow, you can have the scroll position with
scrollView.contentOffsetit's aCGPoint, so with a conversion (point to pixel) you should get the numbers of Pixel.This should works.