Quote:
Originally Posted by vishal
Hi,
I got this problem resolved.
My new problem is I want to notify my main view controller that navigation controller is done with its task. so when below statement gets call my main view controller should know that navigation controller finished.
Code:
[self.navigationController dismissModalViewControllerAnimated:YES];
Is there any way to notify main view controller that navigation controller is finished?
|
there's nothing automatic. you'll have to arrange to pass in the calling controller to the modal view, and then when the modal view is finished, it can call some method on the caller.