If I have a UIViewController called B. If I add UIViewController C as a subview/child view controller of B. Then I add in D as a child view controller of B too. I then remove D from B. In this case should C's viewDidAppear be called afterwards?
The reason I ask is because I am not getting B's call to viewDidAppear. I am planning to do something when B's dismissed.
viewWillAppear
andviewDidAppear
. WILL and DID! Its self explanatory. Its even documented on Apple's website and header files... – David Skrundz