Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I used to verify that some of my variables had the expected retain count using [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 are no memory leaks?

Note: I understand that ARC should handle this for me, but life is far from being perfect, and in real life you have objects that are sometimes allocated by third party libraries (using retain?) and never deallocated.

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, 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 an alterante solution?

share|improve this question
8  
Profile your app using Instruments. – Macmade Jan 14 '12 at 15:50
4  
The retain count of an object is largely meaningless and certainly meaningless in this context. – bbum Jan 14 '12 at 18:16
Is your doSomethingWithMyObj: method doing anything to get a strong reference to your object? – Abizern Jan 22 '12 at 19:17
pre-ARC one could override "retain" to see who was retaining your object. Is there any way to do that in our new, ARC world? – Reid Aug 1 '12 at 19:39

5 Answers

up vote 38 down vote accepted

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

NSLog(@"Retain count is %ld", CFGetRetainCount((__bridge CFTypeRef)myObject));
share|improve this answer
2  
This is nice for debugging purposes. – Inturbidus Apr 9 '12 at 23:32

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

When to use -retainCount?

share|improve this answer

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.

share|improve this answer
What happens if Instruments keep crashing? – tomsoft Jan 17 '12 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 '12 at 16:06

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

share|improve this answer
Understand, but what happen with specific qualifier, external non arc libraries, .... – tomsoft Jan 17 '12 at 11:39
1  
You use the compiler flag -fno-objc-arc to not use ARC with them libraries. – Darren Jan 17 '12 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 '12 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 '12 at 20:40

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).

share|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 '12 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 '12 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 '12 at 19:09
2  
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 '12 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 '12 at 13:05
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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