I decided to use storyboards in a project I have been doing. When the app launches it does the right thing of awakeFromNib
and then viewDidLoad
, but when the app has finished segueing to another view, it doesn't call viewDidUnload
and, I think, neither does dealloc. I have used Apple's Instruments and doesn't show any memory leaking.
Just to note, I am using custom segues and testing this by inserting NSLog
s into the methods. Has anyone else come across this?
Just want to update: dealloc
actually is called but not viewDidUnload
.