I just installed the new version of Xcode/ios6. viewDidUnload is now depreciated.
In the apple doc,
viewDidUnload [...] Deprecated in iOS 6.0. Vi
and second one: What is the new recommended way to release an IBOutlet property ? In dealloc method ?
What is the "old" recommended way? You must always release retained instance variables in dealloc
; it has always been this way and continues to be this way.
It was just that in viewDidUnload
(which is only called for low memory) you could also set your properties to nil
.