If I have several UIViewControllers pushed onto my navigation stack, how / when are the invisible (lower) view controllers re-displayed? Are they all laid out simultaneously with the visible view controller or only after they are unloaded in the display stack?
edit I am currently managing resizing of a subview (instead of setting autoresizing = YES). I am doing a resize in the willAnimateRotationToInterfaceOrientation method so that it is well animated. I assume that this method is not called for any uiviewcontroller, and not on top of the display stack. So, there is a built-in way to find out if the current uiviewcontroller is the one that is displayed, and if not, which method should I override to relay my routines to uiviewcontrollers that are not at the top of the display stack
Thanks!
Solar
source share