Which delegate method will be called after dismissing the modal view?
A:
The following methods will be called.
As for the viewController will appear:
-(void)viewWillAppear:(bool)animated;
-(void)viewDidAppear:(bool)animated;
As for the viewController will disappear:
-(void)viewWillDisappear:(bool)animated;
-(void)viewDidDisappear:(bool)animated;
Toro
2010-08-31 11:08:53