Reputation: 13
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
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
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
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