So what you want is to have a view appear at some time later than when the view controller is pushed?
You can have the view in the nib but just not be already added to the WebView. So it will be created when the viewcontroller is created, your viewcontroller will identify it by an outlet, and at the appropriate time the view controller or the view will addSubview and make it visible.
Alternatively you can place it in its own nib. File's owner will be set to the same viewcontroller as you're using with the WebView so no viewcontroller in the nib. It will also be connected to the viewcontroller by an outlet. You don't use the viewcontroller's initWithNibName to load it. You use the APIs in UINibloading.h
|