在iOS应用程序中编译和运行Swift代码[已关闭]

wi3ka0sx  于 2023-04-28  发布在  Swift
关注(0)|答案(1)|浏览(133)

已关闭,此问题需要更focused。目前不接受答复。
**想改善这个问题吗?**更新问题,使其仅通过editing this post关注一个问题。

6年前关闭。
此帖子已于2天前编辑并提交审核,未能重新打开帖子:
原始关闭原因未解决
Improve this question
是否可以在iOS应用程序中编译/运行用户输入的Swift代码?如果是,如何做到?

svgewumm

svgewumm1#

你想问的是如何运行或解释运行时提供的Swift代码,比如Swift命令行REPL或iPad的Swift Playgrounds应用程序。完整的答案对于stackoverflow来说实在是太复杂了。
您需要使用Swift compiler source code来执行此操作。首先看一下swift-lldb (the version of the llvm project's debugger with Swift support),它可以完成您所描述的任务。

相关问题