Hi! first of all... i'm italian, so i'm sorry for my bad english!
so... this is my app: i'm using a navigation controller: in the first view there are 10 buttons and every button calls a functions like this:
[self pushViewController:nameview animated:YES];
to a different uiviewcontroller! So i have 11 uiviewcontroller! Every controller is decleared like here
@interface ...
IBoutlet UIViewController *viewcontroller;
...
@property (nonatomic, retain) IBOutlet UIViewController *viewcontroller;
Finally i have to say that i'm working with IB!
My problem is that my app doesn't release memory! when i'm in a view and i tap on the "backbuttonitem" (created by IB, not by me) the last view doesn't became released (again, sorry for my bad english)... and if an user see all 10 view, the app receive a warning massage (low-memory)!
How can i release the last view saw before the popviewcontroller action?
thanks :D