Hi,
I am new to iPhone development and need some help.
I have a main view and a toolbar with button on it. when that button gets clicked a UINavigationController get initiated with few options. When user done with options settings this navigation controller get out from the screen and main view displays again. I am using following statement to remove navigation controller.
Code:
[self.navigationController dismissModalViewControllerAnimated:YES];
I want to take some action on this options set by user so main view controller needs to know when navigation controller finished.
Is there any way to notify or reinitiate the main view?
Vishal N