Solution note, Not a question.

UIScrollView suspends OpenGL rendering by preventing firing CADisplayLink tick when CADisplayLink registered with NSDefaultRunLoopMode.

But, if you use NSRunLoopCommonModes to solve this, UIScrollView will halt scrolling at burst scrolling. And after once halted, it does not scroll again. (broken)

And registering CADisplayLink in other thread/runloop (as described in answer of this question: CADisplayLink stops updating when UIScrollView scrolled) reduces UIScrollView behavior breaking, but cannot eliminate.

link|improve this question

77% accept rate
feedback

3 Answers

up vote 0 down vote accepted

Solution is simple. Just use NSDefaultRunLoopMode. And call render & present code at -scrollViewDidScroll too, not only in CADisplayLink's tick callback.

link|improve this answer
2  
This will partially work. scrollViewDidScroll: is only called when the scrolling actually moves. If you start a scroll, then hold still without lifting a finger, the render will not be called. – Matt Wilding Mar 22 '11 at 23:08
I'm experiencing the same problem as Matt. Any solution to this issue? – rsanchezsaez May 14 '11 at 15:47
feedback

Edit: Woops, misread your post. Nevermind

As mentioned in this post, you can solve this issue by switching run loop modes. Animation in OpenGL ES view freezes when UIScrollView is dragged on iPhone

link|improve this answer
feedback

Here you can find a better (and more complex) solution:

Animation in OpenGL ES view freezes when UIScrollView is dragged on iPhone

that allows you to use 'NSRunLoopCommonModes' and avoids OpenGL freezing when holding a finger without scrolling.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.