I have an app where it seems to me that memory is not being release but I am not sure how to analyze this problem.
'Analyze' in xcode shows no problems and 'Instruments' does not show any memory leaks.
As far as I have seen, it is not recommended to look at the retain counts.
How can I find the problematic objects? I have added printouts to the object's 'dealloc' method and do not see that this is being called.
Update
I am now getting that
objc[69139]: FREED(id): message retainCount sent to freed object=0x5422420
Is there an easy way to find out which object this is? 'Analyze' does not report any invalid releases.