Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用 C++ 编写了游戏引擎,我会使用 mono 作为脚本语言(类似于 Unity 和 CryMono),我的问题是,我是否允许在 Android 和 iOS 上动态链接 Mono 并使用运行时进行脚本编写?
谢谢
iOS 不允许在设备上进行任何类型的动态链接/代码生成/JIT。您执行的所有代码都必须静态编译到主二进制文件中。
不过,Android 更加宽松,并且确实允许 iOS 不允许的几乎所有内容。