Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deprecation of viewdidUnload in ios 6

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

like image 744
Vork Avatar asked Oct 05 '22 18:10

Vork


1 Answers

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

like image 95
Artem Shmatkov Avatar answered Oct 12 '22 11:10

Artem Shmatkov