iOS设备和模拟器的构建实际上有何不同?

前端之家收集整理的这篇文章主要介绍了iOS设备和模拟器的构建实际上有何不同?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
由于iOS模拟器是一个模拟器,为什么我需要专门为它构建?在某种VM /沙箱中运行真实代码的模拟器不是重点吗?

那么,设备/模拟器的构建方式与实际构建的应用程序的不同之处存在哪些实际差异呢?

解决方法

An application running natively on an iOS device is an ARM program. However,an application running in the iOS Simulator is an ordinary 32-bit (i386 architecture) Mac OS X program. In other words,the Simulator doesn’t simulate an iOS device down to the hardware level. It provides a faithful copy of the iOS environment,reimplemented to run natively on the Mac.

原文链接:https://www.f2er.com/iOS/330993.html

猜你在找的iOS相关文章