handle when callback to a dealloced delegate?

前端 未结 2 1511
栀梦
栀梦 2021-01-07 06:38

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 hav

相关标签:
2条回答
  • 2021-01-07 07:02

    I have no objective-c knowledge, but I would think that you need to test for self.delegate != nil separately e.g

    if (self.delegate != nil)
    {
     if ( [self.delegate respondsToSelector:selector]) 
     {
        [self.delegate performSelector:selector withObject:self withObject:returnObject];
     }
    }
    

    Oh and it's best to reassign the delegate if it is nil.

    0 讨论(0)
  • 2021-01-07 07:10

    Generally, a delegate should always deassociate it from its delegating object in its dealloc method. So your view controller should check in its dealloc whether it is set as the delegate of the delegating class, and if so, set the delegate property to nil.

    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.

    0 讨论(0)
提交回复
热议问题