I’ve build it for 2.2.1 with newest Xcode and the Beta of 1.5.1
For one customer i’ve build a new build for 3.0 with 1.5.1 final, which starts up much faster on his 3G withou any issues. (restarting the device and reinstalling the app didn’t solved his problem before)
The App itself is a weather App, so it comes with comparable low memory usage but it uses location manager and www.
Is it possible that building for 2.2.1 is a bad idea? So far i know it happens at least on some iPod touch 2G and iPhone 3G.
I can see the App drop in rankings each time a negative review is on top of the reviews. It’s a shame you can’t comment reviews as developer.
There is a not well documented time limit for an iPhone application to render its first frames and process input. If your application misses this time limit it gets killed by SpringBoard. A typical case is an application with a large first scene. To avoid this problem it is recommended to create a small initial scene which just displays a splash screen, waits a frame or two with yield and starts loading the real scene. A code sample for this could be:
function Start () {
yield;
Application.LoadLevel("Test");
}
all 10 - 15 application starts (install, other application), you either need to restart the device or run free memory over it.
at least I need with a good 9 pages of applications.
After an update with a few applications I basically have 15mb of RAM free normally.
EDIT: naturally meant restart the device, not reinstall
What does ‘a large first scene’ mean. In my games, the first scene is always a menu scene. There are only one gameObject in the scene, does this count.