in a utility application, in the viewDidLoad method, I have the following functions, among others:
[self hideObjects];
[self setColorAndSizes];
[self fadeInEverything];
These three methods, combined, first hide all objects on the screen, then adjust the sizes and colors appropriately, and then fade each of them into view, one at a time. Now, when the user goes to the FlipsideView, then returns to the MainView, although I have the same three functions in viewDidAppear, all of the objects appear for maybe half a second, then disappear, and fade in. Why don't the hide immediately, like they do in the viewDidLoad method?