Deprecating viewdidUnload in ios 6

I don’t know why viewDidUnload is deprecated from ios6. But this means that xcode automatically controls the release of created objects and controls memory usage

+5
source share
1 answer

This means that if you do not use ARC, you need to move objects that let go of the deallocmethod from viewDidUnloadif you are creating an application only for iOS 6 and above.

Also see this answer

+4
source

All Articles