Using iOS 5. The aim is to put a button on the splash screen view, this can't be done as Default.png is static image so what I am doing is showing a modalViewController as soon as the first Viewcontroller appears. This happens to be a ViewController hosted by the TabController. The problem is,there is a small gap where as soon as the Splash screen disappears and the SplashViewController is shown (with the same image but active) the user can briefly see the view underneath.
I am using presentModalViewController to show the active splash view. Is there any way to get rid of this glitch, I am calling presentModalViewController in the viewWillAppear method of the underlying viewcontroller . I think what I need is to somehow show the active splash screen a bit earlier than this
Thanks