I noticed that there is no dealloc method already placed in various class files when i create an ios5 based project, but I remember that there is a ready-made dealloc method placed in most of these files in ios 4.3 based projects …
does that mean that if I did not release allocated objects, no memory leak will happen ? or should I my own dealloc method ?
I noticed that there is no dealloc method already placed in various class files
Share
iOS 5 contains feature called ARC, Automatic Reference Counting, http://developer.apple.com/technologies/ios5/
which means that developer is no longer responsible for manual memory management.