When presenting a modal view controller how does one then interact with the parent view controller once the presented view controller is dismissed.
From what I understand viewWillAppear
does not get called on the parent view controller when dismissing the modal view controller. How then does one update the UI based on the input taken in on the modal view controller?
Can the modal view controller call methods on it's parent view controller? i.e [self.parentViewController doWhatIWant];
?
Or alternatively is there a method that gets called on the parent view controller when the modal view controller is dismissed?