Questions tagged [dealloc]

In Cocoa (and other frameworks that derive from NeXTSTEP), dealloc is the instance method responsible for tearing down an object. It should release the object's references to its ivars and then call up to the superclass's implementation.

496 questions
-2
votes
1 answer

how to mange memory with properties

I am new to iOS so trying to understand memory management. I have a .h File which contains a property and i want to use that var in some function. @property (nonatomic, retain) NSMutableArray *myArray; then in my .m File i have some function…
1 2 3
…
33
34