StackRunner
StackRunner

Reputation: 1503

Using iOS Simulator to emulate iPad 1

One of my customers is experiencing terrible slow downs only on the iPad 1 device. Is there any way of getting the iOS Simulator to emulate the performance/hardware of the original iPad?

I would rather not have to go out and buy an iPad one as iOS 6 won't support it this autumn.

The app runs fine on the iPad 2 and 3. I have tested using the allocations and activity instruments.

Any ideas? Thanks again. The OS is 5.1.1 and the App was compiled with XCode 4.4.1.

Upvotes: 3

Views: 2338

Answers (1)

SomaMan
SomaMan

Reputation: 4164

As far as I know, the simulator is what it says, a simulator, and as such will run as fast as it can on whichever computer you're using. You'll probably need to put delaying code into your run loops to simulate the slowness of the iPad 1, but maybe your client needs to be aware that the iPad 1 is much slower than the newer models - there are certainly some (particularly graphic intensive) operations which will struggle - you may find you need to adapt the user experience according the the device being used (Apple don't encourage this - they prefer you to check the iOS version - but there are several questions on SO which could help you here).

Upvotes: 3

Related Questions