I have an application where there are a few view controllers on top of each other before the final stage where the user "saves" all the data he has entered in the stages. During the entering data phase, the user is allowed to go back and change some of the data. However I want to release some of the data structures because they consume a lot of memory. I can't release it during viewdidunload because it only gets called when the device is low on memory. I also can't release it in viewDidDisappear because the data wouldn't be there if the user wants to go back and change stuff.
I think the way to do this is to set up a pointer of the viewcontrollers to the previous viewcontrollers and then call a release function on the pointer to the previous viewcontroller to release stuff.
How do I do this?
I think I put something like
#import "SomeViewController.h"
@property SomeViewController someViewController;
in the .h file? I am not sure where to go from here.