Deprecation of viewdidUnload in ios 6

ios, objective-c, xcode

Solution

It means that if you not using ARC you need to move objects releasing to `dealloc` method from `viewDidUnload` if you create application only for iOS 6 and higher.

Also look at this answer

Problem

I dont know why viewDidUnload is deprecated from ios6.Does it mean that xcode will automatically manages the deallocation of objects created and control the memory usage

Original source

Related problems