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 ?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
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. |
|||
|
|
|
Only if you use ARC. I guess this change is an intensive for us to do so. If you don't you should implement the dealloc as you did before. |
|||||||||||
|
|
This is because iOS 5 projects,by default have ARC enabled. On an ARC enabled projects, all releases, autoreleases and deallocs are illegal. |
|||||
|