EndangeringSpecies
EndangeringSpecies

Reputation: 1594

can you run an iOS app executable without source code on a Mac, such as in emulator?

is it possible to download an App Store executable to a jailbroken iPad, then download it to a Mac and make it run there?

Upvotes: 1

Views: 487

Answers (4)

Codo
Codo

Reputation: 78985

No, that's not possible. An App that runs on the iPad is built for the ARM processor. The emulator however requries an App built for i386 processor. (When you have the source code, XCode builds it for both processors.)

Upvotes: 3

sergio
sergio

Reputation: 69047

It is not possible. An iOS app must be compiled for the i386 platform in order to be executable under the simulator. So, an app downloaded from the App Store will not run, since it is compiled for the iPhone native processor (arm).

Upvotes: 0

Chris Gregg
Chris Gregg

Reputation: 2382

Unfortunately, no. The iPhone simulator runs x86 code, and the iPhone runs ARM code.

Upvotes: 2

omz
omz

Reputation: 53561

No, there is no emulator that can run iOS.

Upvotes: 1

Related Questions