Reputation: 744
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
Upvotes: 5
Views: 3648
Reputation: 1433
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
Upvotes: 4