I implemented the delegate-callback pattern between two classes without retaining the delegate. But in some cases, the delegate is dealloced.
(My case is that I have a ViewController is the delegate object, and when the user press back button to pop that ViewController out of the NavigationController stack)
Then the callback method get BAD_EXE:
if (self.delegate != nil && [self.delegate respondsToSelector:selector]) {
[self.delegate performSelector:selector withObject:self withObject:returnObject];
}
I know the delegate-callback pattern is implemented in a lot of application. What is your solution for this?
Generally, a delegate should always deassociate it from its delegating object in its
deallocmethod. So your view controller should check in itsdeallocwhether it is set as the delegate of the delegating class, and if so, set the delegate property tonil.In most cases, I would imagine this would not be a problem because very often the delegate is the sole owner of the delegating object. So when the delegate gets deallocated, the delegating object would get deallocated too. After all, this is the reason that delegating objects usually only hold weak references to their delegates.