I’ve got a data maintenance screen and I have some selection screens which I push on to the navigation stack, I then dismiss once a selection is made.
When will the interface variables on my maintenance screen be lost?
I didn’t think they would be lost.
But I’m getting some weird results.
they won’t be lost until its
viewDidUnloadis called.. if you have set them to nil inviewDiDunload… they will sure get lost in dealloc..basically if you present a modal view or push a view on above a present view(lets say A) .. then A variables are still in memory…