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 jai开发者_开发知识库lbroken iPad, then download it to a Mac and make it run there?
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.)
Unfortunately, no. The iPhone simulator runs x86 code, and the iPhone runs ARM code.
No, there is no emulator that can run iOS.
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).
精彩评论