I used to verify that same of my variable haves the expected retain count using some [myVar retainCount] under the debugger, especially for var that did not have a custom dealloc.

How do you do this in Arc mode? How do you ensure that there is no memory leak?

Note: I understand that ARC should handle for me, but life is far from being perfect, and in real life you have object that are sometime allocated by third party library (using retain?) and neither desallocated

Image that I do this:

MyObj *myObj=[[MyObj alloc] init];

then I call

[somethingElse doSomethingWithMyObj:myObj];

and later, I do

myObj=NULL;

If my program is working fine, my expectation is that myObj is being destroyed, but it appears not to be the case....

So how can I track this? and especially if somethingElse is not managed by me

Now, about the tools: it seems extremely hard to run memory tools on my mac (with 5 Meg) without rebooting the mac and starting from scratch. This is really annoying! Instruments keep crashing even before the program has started, so is there any alterante solution?

link|improve this question

33% accept rate
7  
Profile your app using Instruments. – Macmade Jan 14 at 15:50
4  
The retain count of an object is largely meaningless and certainly meaningless in this context. – bbum Jan 14 at 18:16
Is your doSomethingWithMyObj: method doing anything to get a strong reference to your object? – Abizern Jan 22 at 19:17
feedback

5 Answers

You should never use retainCount for anything, with or without ARC.

When to use -retainCount?

link|improve this answer
feedback

You don't. ARC handles the memory management for you and does not allow you to call retainCount and even if you could see it, the number it returns is meaningless for you. If you want to you should be doing memory profiling in Instruments with the Leaks and Allocations instruments. That is the best way to look and see how your application is allocating memory and catch any improper use of memory there.

link|improve this answer
What happens if Instruments keep crashing? – tomsoft Jan 17 at 11:35
Then you need to look and see why Instruments is crashing, idk if your tracing way too much at once, or maybe you need to reinstall the dev tools. If Instruments is consistently crashing all the time it sounds like something I might make another question for or (maybe better) take to the Apple Developer forums. – Colin Wheeler Jan 17 at 16:06
feedback

You don't. Apple say you don't need to as ARC will handle it for you.

link|improve this answer
Understand, but what happen with specific qualifier, external non arc libraries, .... – tomsoft Jan 17 at 11:39
1  
You use the compiler flag -fno-objc-arc to not use ARC with them libraries. – Darren Jan 17 at 13:50
I know how to compile non ARC lib with ARC code, but my question was how to ensure that there is no memory leak in the complete chain, and that an object have the expected retain count . – tomsoft Jan 17 at 14:18
I'm pretty new to obj-c, but i'm pretty sure in the WWDC Introducing ARC talk they say they designed ARC so you really dont hve to worry about retain counts at all. It just works. – Darren Jan 17 at 20:40
feedback

You can use CFGetRetainCount with Objective-C objects, even under ARC:

CFIndex rc = CFGetRetainCount((__bridge CFTypeRef)myObj);
link|improve this answer
This is nice for debugging purposes. – Inturbidus Apr 9 at 23:32
feedback

I believe the only way is to profile your application using the Allocations instrument. You will need to click on the info descriptor (the 'i' next to Allocation in the left pane) and click on "Record Reference Counts". You can then profile your app and do a search for the specific class you're looking to inspect. From there you can find the retain count in the Extended Detail pane for each instance of the class.

You can also do this using Leaks as well (since I believe it's a variation of the Allocations instrument).

link|improve this answer
1  
Almost; you profile your app using the allocations instrument, no need to record reference counts at all. If memory is growing, then you can use tools like heapshot analysis and/or recording reference counts to track down the memory accretion. – bbum Jan 14 at 18:15
Well, that's if he's looking to check for memory leaks (which is probably true), but he asked how to verify retain counts, and I believe this is the only way. – Aaron Hayman Jan 14 at 18:21
Verifying retain counts is an absolutely useless thing to do, though. Complete waste of time and it is entirely fair to point that out in writing your answer. – bbum Jan 14 at 19:09
1  
You can't assume anything about the retain count. The frameworks can -- and do -- often retain stuff behind your back and sometimes in surprising ways. Looking at the retainCount is a waste of time. If you have an accretion of memory, you have to know the backtrace of the retain to have it make any sense. The retain count, in and of itself, is utterly useless for debugging purposes and the retainCount method should be removed. – bbum Jan 15 at 0:27
1  
I actually haven't had a problem with Instruments crashing, so I use it extensively. If it's not "Instruments" that's crashing but your app crashing in Instruments, this may be due to a more subtle bug. Instruments usually uses a release build, while debugging uses the debug build. Using the static analyzer also helps: Product -> Analyze. Other than that, I scour the code to find the leak...but I do rely a lot on instruments. And I do check retain counts when I suspect a retain cycle, primarily to determine if there is more than one cycle. – Aaron Hayman Jan 17 at 13:05
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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