I have logging within the target selector that my CADisplayLink is calling. When the "viewDidDisappear" method is called when removing the UIViewController, and deallocating it, I can see the last time the CADisplayLink call was made, but not the subsequent "is finished" log line.

To be specific:

  1. Enters CADisplayLink target selector.
  2. Finishes CADisplayLink target selector.
  3. User initiates UIViewController dismiss method, telling the parent object to remove it from the super view.
  4. Parent object removes from super view, calling UIViewController's "viewDidDisappear", which calls CADisplayLink's "invalidate" method.
  5. The parent view releases the UIViewController, calling it's dealloc method.
  6. EXC_BAD_ACCESS is encountered, within the CADisplayLink target selector, choking on objects that were deallocated as part of UIViewController's dealloc method (it's member data).

Long story short, it appears that I am calling invalidate, but it's in the middle of processing a frame, and my destructor wipes out objects that the selector is using. I could "cheat" and invalidate the displayLink first, then have some sort of callback that fires off after a little bit of time off of the parent view to remove the UIViewController, but that seems like a hack. CADisplayLink retain's the target object in question. I think that's their way of letting me know I have to work around this. But how?

CADisplayLink target selector being triggered after it is invalidated

Thanks to anyone who helps me understand what is really going on here. I guess I'm not 100% sure I understand if CADisplayLink is executing in a separate thread or not, and if I need to put up the appropriate locks or not.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.