When to retain a "delegate"

Posted by Jose on Stack Overflow See other posts from Stack Overflow or by Jose
Published on 2010-03-14T21:10:33Z Indexed on 2010/03/14 21:15 UTC
Read the original article Hit count: 183

Filed under:
|

I know that in Objective-C you should never retain your delegates because it may cause a retain-cycle, however, how do you know the difference between a delegate and a non-delegate object ? Can't it be said that just sending a message to any object is delegating work to that object ?

© Stack Overflow or respective owner

Related posts about objective-c

Related posts about macosx