1

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.

TheAmateurProgrammer
  • 9,252
  • 8
  • 52
  • 71
Nik
  • 9,063
  • 7
  • 66
  • 81

1 Answers1

2

Uncheck "Delays content touches" property of the scroll view in IB.

Sergey Demchenko
  • 2,924
  • 1
  • 24
  • 26
  • Unfortunately that not helped, `delaysContentTouches` is about determining whether "touch" or "drag" occurs, my situation is different – Nik Sep 13 '13 at 09:00