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.
| |||
|
feedback
|
|
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. | |||
feedback
|
|
You can print this with
However, this number isn't reliable due to things like | |||||||||||||
feedback
|
|
DO NOT EVER USE retainCount!!!!!!!!!! If you ever want to check memory leak use xcode memory leak tools instead | |||
feedback
|
[objInstance retainCount] = (<unknown type>) <unknown type>– mrd3650 Sep 13 '11 at 8:02