I tried to create a SplashView which display the Default.png in the background and a UIProgressBar in front. But the splash screen is not being updated...
Inside my
Default.png is just a graphic, a static image shown while the application is launching. If you want to show further progress, you'll have to show everything at the applicationDidLaunch
phase. Show your modal "Splash Screen" there first (Create a view controller, add its view
as a subview of your main window) and dismiss it when you are done whatever additional loading you needed to do.