GeRyCh
GeRyCh

Reputation: 1628

Delay while loading Default.png

I think that in my app loading of Default.png takes more time than usual. So is there constant time from launching to appearing of first view when Default.png displayed? Or maybe it depends on memory that app uses? Regards.

Upvotes: 0

Views: 332

Answers (3)

Suresh Varma
Suresh Varma

Reputation: 9740

The time of the defaut.png loading is totally dependent on the load you have put up on the applicationDidFinishLaunching.. So try not to call much function from there. As soon as your above function is done... It will end up the display of default.png...

Upvotes: 1

Suresh Varma
Suresh Varma

Reputation: 9740

Reduce the load in the appDidFinishLAunching function in the application delegate.. IT will load fast..

hAPPY iCODING...

Upvotes: 0

Aman Aggarwal
Aman Aggarwal

Reputation: 3754

It depends upon the time taken by your view to load.

Upvotes: 0

Related Questions