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:
- Enters CADisplayLink target selector.
- Finishes CADisplayLink target selector.
- User initiates UIViewController dismiss method, telling the parent object to remove it from the super view.
- Parent object removes from super view, calling UIViewController's "viewDidDisappear", which calls CADisplayLink's "invalidate" method.
- The parent view releases the UIViewController, calling it's dealloc method.
- 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.