Implement either of the following delegate methods in your main view controller:
Code:
- (void)viewWillAppear:(BOOL)animated;
Will be sent to the parent view controller when the modal view controller is dismissed, but before its animation starts.
Code:
- (void)viewDidAppear:(BOOL)animated;
This message will be sent to the parent view controller when your modal view has finished animating.