tags:

views:

24

answers:

1

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