The Situation:
I have two view controllers (UIViewController) managed by a navigation controller (UINavigationController). On load, the first view controller, a sort of waiting screen, initiates loading of the second view controller, which takes some time. As it is now, the first view controller does not transition to the second view controller until all data has loaded -- which as I understand it is normal behavior in UIKit.
The Problem:
I want the first view controller (wait screen) to be displayed for AT LEAST 2 seconds while it waits for the second view controller to load. The problem is, sometimes the loading of the second view controller finishes before 2 seconds, and the 2 second wait is interrupted.
The Dream:
I want the transition from the first to the second view controller to DELAY until 2 seconds have elapsed.
A) Dream Scenario A:
If the loading of the second view controller being pushed finishes before the 2 second delay, I want the transition (the animation you actually see) to be deferred until the 2 second delay has been fulfilled.
B) Dream Scenario B:
If 2 seconds elapse BEFORE loading has finished the transition (the animation you actually see) should happen normally as soon as the loading is done.
Are there any callbacks or notifications in objective-c or cocoa that can allow me to do this?
Thanks.
Update/Clarifications: (Sorry, was not as clear as I could've been)
At first glance it may seem that NSTimer might be my solution. Well, unfortunately it is not. I Know how to use NSTimer to push the view controller after a delay (not the problem). I actually push the second view controller immediately when the first view controller loads. The idea being that, since the LOADING of the second view controller being pushed takes a while, I give the user a nice waiting screen with the first view controller.
Reason for wanting control:
There may be cases in which the loading of the second view controller being pushed finishes quickly -- in which case the first view controller may only be visible for a fraction of a second. This looks unprofessional. So instead of this, I want to show the waiting screen for a constant amount of time for consistency and to give some brief useful info about the app. My app is a book, and the waiting screen is more like a Frontis piece -- showing Title and Author.