NSMenuItem -setTarget: Does it retain the target, or should one explicitly retain it?

I've seen conflicting docs on this. I know of retainArguments in NSInvocation, but I'm not sure this applies to NSMenuItem as it doesn't inherit from NSInvocation.

link|improve this question

feedback

1 Answer

I don't believe it does. Usually target-action methods and delegate properties don't retain what they're set to, as they don't “own” their target.

link|improve this answer
It's a good idea to file an enhancement request by using the link at the bottom of the relevant page. A quick look at the -setTarget: API reference confirmed this is not stated either way, though it should be. – Joshua Nozzi Jul 27 '10 at 21:37
Did so, thanks. – the979kid Jul 28 '10 at 14:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.