1

I checked other questions and found none with my doubt.

Is there a way to display an UIActivityIndicatorView "on top" of Default.png while my iPhone application is being loaded?

Thanks in advance.

Camilo @ lx-apps.com/

camilo
  • 1,451
  • 3
  • 20
  • 31

1 Answers1

1

You can paste a (static) indicator view image on top of Default.png. Of course it won't animate.

Other than that you can't do anything because the app isn't loaded yet, so none of your UI code will run.

kennytm
  • 510,854
  • 105
  • 1,084
  • 1,005
  • Oh damn! Well, thanks for the help anyway. Guess I'll have to change the data loading to somewhere else in the application, and not when it is loading. – camilo May 21 '10 at 13:47
  • @camilo: You can update the UI to anything on `-applicationDidFinishLaunching:`, then do the data loading. – kennytm May 21 '10 at 15:43
  • Iep, that was what I was thinking. It will not be a big change in the code, fortunately. Thanks for the tip. – camilo May 24 '10 at 08:57