Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.