I need to get x offset from UIScrollView when user drags it or system animates its scrolling.
I am using - (void)scrollViewDidScroll:(UIScrollView *)scrollView;
to get offset value of Scroll view, but it appears to be delivered with a slight delay, without respect to acceleration of drag gesture.
Is it possible to get actual offset value without delay?
upd: As I see from profiler it is not performance issue by no means.