I'm wondering is there any way to test how an app will work on arm64 without physical devices with arm64 support?

iPhone 64-bit simulator seems to compile code for intel processor architecture

有帮助吗?

解决方案

Unless you are testing for compiler bugs, the simulator should behave in exactly the same way as the original hardware. There are bugs that are possible when going from 32 to 64 bit; these bugs will be visible on the simulator as well because it produces Intel 64-bit code for the 64-bit simulator.

If you need to test on an actual device, you'll have to buy or borrow one.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top