vote up 12 vote down star
5

As anyone with an iPhone knows, some applications launch quickly, while others take several seconds.

What are the best techniques for ensuring an iPhone app launches and becomes usable in a snappy manner?

flag

4 Answers

vote up 8 vote down check

Apple recommends you "lazy load" every view. I.e. only load the first page on start up, and other pages only when they are navigated to.

In terms of graphics, use PNGs wherever possible as the device is heavily optimized for this format.

Also include the startup screenshot so the user knows the application is loading.

link|flag
vote up 0 vote down

Also try profiling with Shark, to find any performance bottlenecks.

http://developer.apple.com/iphone/library/documentation/DeveloperTools/Conceptual/SharkUserGuide/Introduction/Introduction.html

link|flag
vote up 1 vote down

This is one of those things where there is no sure-fire path to success. Use Apple's excellent Instruments tool to monitor your application's launch. You then need to delve into the results to figure out ways to optimise the launch process.

link|flag
vote up 2 vote down

I use lots of external resources, so I use Lazy loading to get up and running quickly. This way the APP can start with the barest minimum and then load the rest while its already begun.

Made a big difference in start time

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.