05-04-2009, 10:38 AM
|
#3 (permalink)
|
|
Vishal
Join Date: Feb 2009
Location: Pune, India
Posts: 76
|
Quote:
Originally Posted by mralex
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.
|
Thanks,
This works for me.
|
|
|