Confusing on cocoa touch on who how to deal with navigationController, see the following case.
Originally there are 4 controllers (A, B, C, D) in static, at first pop top two (C and D) out, then present anther controller E. All with parameter animated set as YES.
Debug show that both controller C and D have been released (invoking dealloc) but their life-circle method such as willViewDisappear and didViewDisappear don't have the chance to e invoked, the consequence is that some operations in these methods haven't been executed, unexpected.
1#, But if I don't present controller E, everything is OK, all will(did)ViewDisappear methods will be invoked, expected.
2#, Or if we set the parameter of animated for both methods popToViewController and presentModalViewController as NO, as 1, get the expect result.
So see my questions as below?
a) How does cocoa touch deal with its pop action in its navigation controller, why after invoke presentModalViewController, some life circle methods aren't been invoked? In fact they should by my understanding.
b) How does parameter animated affect these process? Generally speaking, if controller A does animation on controller B, both A and B should keep alive (not to be dealloc) before animation finished, a retain action may be done, but how does it affect will(did)ViewAppear function call?
NSArray * popArray = [self.navigationController popToViewController:self animated:YES];
[self presentModalViewController:editViewController animated:YES ];
Look forward of your answers, any advice is welcome, thanks.