Adhees
Adhees

Reputation: 13

How do I convert IPA files to project files that can be run on iPhone simulator?

Can anyone please tell me how to convert the downloaded .IPA files (Apps) to project file to run on iPhone simulator?

Upvotes: 1

Views: 3292

Answers (3)

Matthias Bauch
Matthias Bauch

Reputation: 90117

To shed some light on the why: The iPhone has an ARM processor, but the simulator runs on a i386 processor. And you can't run code that was compiled for one processor family on the other processor.

If you could run ARM program in the simulator there would be no reason to compile different code for the device and the simulator. But this is what we all do each day.

Upvotes: 1

includeMe
includeMe

Reputation: 2672

You have to use iTune to run a .ipa file. But iTunes can be used to run .ipa files on devices only.

Upvotes: 3

Seyther
Seyther

Reputation: 662

ipa files contains the compiled source code. You can't open them as project. Besides you can't run any ipa using iPhone simulator.

Upvotes: 0

Related Questions