Before app Loads The Default.png is shown fine till here next is to show Progress bar. And then it will show the application view. Please Supply code example ? Hope you got it all :)
Thanks.
Before app Loads The Default.png is shown fine till here next is to show Progress bar. And then it will show the application view. Please Supply code example ? Hope you got it all :)
Thanks.
The first place you can start drawing is in your applicationDelegate, in appDidFinishLoading. You might want to put up a progress bar there, maybe on a UIImageView that uses your Default.png. You can also create a Timer task in order to add a little to your progress bar, either on every second, or millisecond, or you could have a counter that you are incrementing as you are initializing various pieces of your code, and the timer task can use that counter to update the progress bar. Just before you show the final application view then draw the final part of the progress bar and wait a split second for the user to see it.