Vork
Vork

Reputation: 744

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

Upvotes: 5

Views: 3648

Answers (1)

Artem Shmatkov
Artem Shmatkov

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

Related Questions