Xcode project 和 Xcode playground 有什么区别?

What is the difference between Xcode project and Xcode playground?

我是 Xcode 和 swift 的新手,我想了解 "starting with playground" 和 "creating a new xcode project"[= 之间的区别13=]

Xcode 项目允许您创建最终可以上传到 App Store 的真实应用程序(前提是您成为了 Apple 开发者)。 Xcode Playground 允许您玩代码并对其进行测试。它不适合主流开发。有帮助吗?

来自苹果网站:

Interactive playgrounds help you to quickly prototype and build your applications, and simply provide another great way to interact with your code.

但是,

Xcode项目 会创建一个新的资产文件夹和预制的 swift 和故事板文件。

Playground 仅用于测试某些代码,但是,您在 Playground 上可以做的项目中几乎所有的事情都会变得更难。 A project 也有 main.storyboard 而 playground 没有。