Does anybody know how can I check the retain count of an object while in debug mode? I have tried to add an expression [objInstance retainCount] but it did not work. I have also tried the print object PO [objInstance retainCount] in the console but again it did not work.

link|improve this question

Check this descriptive post out This answer was provided at the beginning of this year, but has a detailed description of why NOT to use retain count – James Webster Sep 10 '11 at 19:50
1  
What do you mean here by "did not work?" – Rob Napier Sep 10 '11 at 20:09
By "did not work" i meant that expressions did not give me the retain count. It displayed [objInstance retainCount] = (<unknown type>) <unknown type> – mrd3650 Sep 13 '11 at 8:02
Thanks James Webster for the reference – mrd3650 Sep 13 '11 at 8:03
feedback

3 Answers

up vote 0 down vote accepted

I am guessing you are talking about getting the retainCount in GDB?

This is how I get in my Code.

(gdb) p (int)[product retainCount] $2 = 4

Hope this is what you are looking for.

link|improve this answer
Yes .. in fact with the (int) casting it even worked in the debugging expression. thanks! – mrd3650 Sep 13 '11 at 8:22
feedback

You can print this with

NSLog(@"Retain count might be %d",[objInstance retainCount]);

However, this number isn't reliable due to things like autorelease. You should rather read up on memory management and make sure that your retain and release calls match up. You can also run Build/Build and Analyze to get Xcode to help you find possible memory leaks, but again, these are only potential leaks. You'll need to check each one yourself to be sure.

link|improve this answer
2  
Calling -retainCount Considered Harmful is a good read. – Bavarious Sep 10 '11 at 19:32
Yes, ever use retainCount, it's value is not guaranteed to be meaningful. – Zaph Sep 10 '11 at 19:35
Thanks @Bavarious for the reference it's very informative. I am aware of the autorelease pools, however I am safe since no? Since I have only one autorelease pool which is the application's default, therefore they will only be autoreleased at the end of the application. – mrd3650 Sep 13 '11 at 8:16
@mrd Not really. Cocoa creates an autorelease pool at the beginning of each event loop and drains it at the end of each event loop; see the documentation. And the main problem is that it’s hard to be sure when an object has been autoreleased or not, and that influences its retain count. – Bavarious Sep 13 '11 at 10:54
@Bavarious thanks. I have read the doc however now I got confused of when do event loops get created and destroyed (i.e. when are autorelease queues created and drained) I read that these happen on tap event for example, does this also happen when a new view is loaded such as when a modal viewcontroller is presented and dismissed, and when viewcontrollers are pushed/popped onto/out of the navigation stack? – mrd3650 Sep 13 '11 at 15:18
show 3 more comments
feedback

DO NOT EVER USE retainCount!!!!!!!!!! If you ever want to check memory leak use xcode memory leak tools instead

link|improve this answer
I was not using it for leaks. I wanted to track the retain count of an particular object in between 2 methods. But yes for memory leaks the Leaks tool is good and I have also found Zombies very useful. – mrd3650 Sep 13 '11 at 8:07
feedback

Your Answer

 
or
required, but never shown

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