In a tab bar application, I'm adding a view to my first tabbar view by doing:
[self.view addSubview:anotherView.view];
Once anotherView is done, I do:
[self.view removeFromSuperview];
Which goes back to the parent but doesn't fire viewDidAppear or viewWillAppear on the parent. I can use messaging but it seems there must be a better way. Any suggestions?