NSLog(@"retain count 1 for show detail -- %d",[showDetail retainCount]);

ChecklistDetail *detail = [appDelegates.arrayForChecklistDetails objectAtIndex:[sender tag]];

self.showDetail = detail;

NSLog(@"retain count 2 for show detail  -- %d",[showDetail retainCount]);

Here, in the above code, output of the first nslog is "retain count 1 for show detail -- 0", which is correct. However, the output of the second nslog comes as following "retain count 2 for show detail -- 2".

How does its retain count go upto 2?

help me if u can....

link|improve this question

79% accept rate
5  
Don't use retainCount. – BoltClock Feb 22 '11 at 10:56
2  
Seriously -- do not use retainCount. While it may seem like it was useful here, learning to use Instruments effectively would both address this case and will continue to be effective in the myriad of cases where retainCount is downright misleading. – bbum Feb 22 '11 at 16:43
feedback

2 Answers

because when you do

self.showDetail = detail;

you add one to the retain count if your property is declared with 'retain'

the setter handles the retain count for you, when you assign to the property the setter will increase the retain count for the object that you are assigning to the property. Similar when you assign nil to the property it will release it, i.e. decrement the retain count on the object.

link|improve this answer
feedback

I'm guessing that your showDetail property has retain semantics. So when you do this:

self.showDetail = detail;

the synthesised property is calling retain. The other way to call your setter might make this clearer:

[self setShowDetail:detail]

So that's a retain count of 1. The second retain is being held by the array.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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