When I get a selector passed to my method, should I just save it:
-(void) setCallBack:(SEL) selectorToCall { self->mSelectorToCall = selectorToCall; }
or should i save?
-(void) setCallBack:(SEL) selectorToCall { self->mSelectorToCall = [selectorToCall retain]; }
source share