I would like to know in what situation did you use -retainCount so far, and eventually the problems that can happen using it.
Thanks.
|
I would like to know in what situation did you use Thanks. |
||||
|
You should never use For example:
Basically, since anything can retain an object (and therefore alter its If you're trying to track down why an object isn't getting deallocated, use the Leaks tool in Instruments. If you're trying to track down why an object was deallocated too soon, use the Zombies tool in Instruments. But don't use edit Please everyone go to http://bugreport.apple.com and request that edit #2 As an update, |
|||||||||||||||||||||
|
NEVER!Seriously. Just don't do it. Just follow the Memory Management Guidelines and only release what you @bbum said it best here on SO, and in even more detail on his blog. |
|||||||||||||||||||||
|
|
Autoreleased objects are one case where checking -retainCount is uninformative and potentially misleading. The retain count tells you nothing about how many times -autorelease has been called on an object and therefore how many time it will be released when the current autorelease pool drains. |
|||||||||
|
|
I do find retainCounts very useful when checked using 'Instruments'. Using the 'allocations' tool, make sure 'Record reference counts' is turned on and you can go into any object and see its retainCount history. By pairing allocs and releases you can get a good picture of what is going on and often solve those difficult cases where something is not being released. This has never let me down - including finding bugs in early beta releases of iOS. |
|||
|
|
|
Take a look at the Apple documentation on NSObject, it pretty much covers your question: http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Protocols/NSObject_Protocol/Reference/NSObject.html%23//apple_ref/occ/intfm/NSObject/retainCount In short, retainCount is probably useless to you unless you've implemented your own reference counting system (and I can almost guarantee you won't have). In Apple's own words, retainCount is "typically of no value in debugging memory management issues". |
|||||||||
|
|
What problems can you get from using it? All it does is return the retain count of the object. I have never called it and can't think of any reason that I would. I have overridden it in singletons to make sure they aren't deallocated though. |
|||||||||||
|
|
You should not be worrying about memory leaking until your app is up and running and doing something useful. Once it is, fire up Instruments and use the app and see if memory leaks really happen. In most cases you created an object yourself (thus you own it) and forgot to release it after you were done. Don't try and optimize your code as you are writing it, your guesses as to what may leak memory or take too long are often wrong when you actually use the app normally. Do try and write correct code e.g. if you create an object using alloc and such, then make sure you release it properly. |
|||
|
|
You should never use it in your code, but it could definitely help when debugging |
|||
|
|
|
Never use the -retainCount in your code. However if you use, you will never see it returns zero. Think about why. :-) |
|||
|
|
-retainCount. – holex May 4 at 10:24