vote up 5 vote down star
2

I have heard of apps not working properly on the simulator but working properly on the actual iPhone device. Has anyone experienced an app that runs perfectly in the simulator but not on the actual iPhone device?

flag

73% accept rate

15 Answers

vote up 5 vote down

If your app is graphics intensive, like say a game, the performance of the simulator DOES NOT resemble at all that of the hardware. Your application will probably be smooth and work great on the simulator, but on hardware it'll likely render at a crawl unless you know what your doing. You can easily go from 60fps to 3fps between Simulator and hardware.

link|flag
I saw the opposite: my app would crawl on the Simulator, but be fine on the device. I think it is due to poor graphic capabilities of the MacBook; it may have been better with a better Mac. – Kristopher Johnson Dec 19 '08 at 13:27
Kristopher, that doesn't sound right. According to my benchmarks, my first-generation (white) Core 2 Duo MacBook can push 9X the triangles per second in OpenGL that the iPhone can. Perhaps you have a thread-locking issue that's jamming up your rendering. – Brad Larson Dec 19 '08 at 14:01
No threads, and not using OpenGL. But the point is that performance can be radically different between the two platforms. – Kristopher Johnson Nov 11 at 15:12
vote up 3 vote down

There are certain bits of code that won't work on the simulator (using the iPhone Keychain, for example), but for almost all applications, the simulator will work exactly like the iPhone.

That said, there's absolutely no replacement for testing on a real device.

link|flag
1  
I think memory management is a big exception to that. The rule of thumb that you always test on hardware is spot on though. – Roger Nolan Mar 27 at 23:01
vote up 2 vote down

I know there are some differences in the OpenGL ES implementation between the device and the simulator. From what I understand this is mainly because of the graphics chip on the iPhone (PowerVR MBX) having vastly different capabilities than other mac machines. Many of the hardware limits are not enforced in the simulator, so it is entirely possible to get something running in the simulator that will totally crash on the device.

There are also some OpenGL ES extensions that are supported by the iPhone hardware that are not supported in the simulator. I believe the major one is PowerVR texture compression (PVRTC).

Another problem area can be memory footprint. Anecdotally, I have not seen the simulator automatically enforce the memory limitations of the device. Therefore, it is possible to have something that runs in the simulator fine, happily consuming copious amounts of RAM and never bothering to free any of it only to be swiftly terminated after a short continuance of such behaviour when running on a device.

link|flag
Another difference to watch out for in the graphics chip is that the iPhone only supports unsigned shorts as data types for indices, which means that you can only address 65,536 vertices in one vertex array. The Mac supports much larger data types. This caused me problems. – Brad Larson Dec 19 '08 at 14:09
vote up 1 vote down

Without considering the performance differences between the two, there used to be some things that the simulator didn't do correctly - i.e. it would mess up audio in some cases (see this question). However since the 2.2 SDK this issue has been resolved and the sound seems to be fine in the simulator. That's not to say that there is some other incompatibilities lurking down there! (Just none I've run into)

link|flag
vote up 1 vote down

I had a problem running a relatively simple 1/30 sec timer to do updates for a game. It runs fine in the simulator, and freezes out input on the device.

link|flag
Were you able to find a solution? – emi1faber Dec 19 '08 at 6:35
vote up 1 vote down

I had some sound effects that played fine in the simulator, but not on the device.

link|flag
vote up 1 vote down

Also note that you will be compiling against the OS X frameworks (where applicable) when building for the simulator so you could be using methods and classes that aren't available on the iPhone versions of the frameworks.

One example I can think of off the top of my head is NSPredicate. I was able to compile and run an app using NSPredicate in the simulator, but it wouldn't compile for the device since that class isn't available.

link|flag
vote up 1 vote down

Regarding sounds, I was having the same problem. The issue was that the sound encodings that the Simulator supports is a different set of sounds than the device. I hope that helps.

link|flag
vote up 1 vote down

There are many trivial examples. For example you can allocate far more memory on the simulatro than on a real phone.

The simulator is just that, it simulates the iPhone OS X using Mac OS X. It does not emulate hardware.

You should always test on real hardware.

link|flag
vote up 1 vote down

I had many problems with libraries and frameworks when moving from the simulator to the device. Not least that they seem to have different architectures!

link|flag
vote up 1 vote down

I have seen the positioning of objects, like toolbars be different on simulator than on the phone. Very annoying.

link|flag
vote up 1 vote down

Yeah....

Apps compiled for 2.x will work fine on 3.0 device, but it will crash on 3.0Simulator

Note: 1. If you compile for 3.0, app will work fine on 3.0 simulator also... 2. a)Compile for 2.x and launch the app in simulator. b)Now change the iPhone Simulator Hardware to "3.0". c)Then launch the app we installed earlier in step a). CRASH !!!!!!!!

link|flag
vote up 1 vote down

If you enable GCC_ENABLE_FLOATING_POINT_LIBRARY_CALLS, your app will crash all over the place in the simulator but work on the iPhone.

Quartz graphics calls in the iPhone simulator are faster than Java2D calls on the same computer--wicked fast.

link|flag
vote up 1 vote down

I've had issues in memory-hungry applications where the Simulator would work just fine (because it would assume the iPhone/iPod Touch's memory was all yours to play with), while the device would crash (because other apps had leaked and Apple background services had eaten up some memory) and I hadn't implemented proper memory management or a response to the didReceiveMemoryWarning selector.

link|flag
vote up 1 vote down

Filenames are case-sensitive on the iPhone, but not in the simulator.

So, for example, if you try to load an image with UIImage *iconImage = [UIImage imageNamed:"MyIcon.png"], but your resource is actually named "myicon.png", then it will work on the simulator, but not on the device.

link|flag

Your Answer

Get an OpenID
or

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