What are the Delegate methods of modal view?
Which delegate method will be called after dismissi开发者_运维百科ng the modal view?
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;
精彩评论