游乐场执行失败:

Playground execution failed:

我正在尝试使用 xcode 7 中的 playground 来测试一些代码,但由于某些原因它不会 运行。

这是我遇到的错误

游乐场执行失败:/var/folders/q6/zswv_4wj16zbckfbdtl9lmyh0000gp/T/./lldb/11352/playground14.swift:1:8:错误:模块文件的最小部署目标是ios9.0 v9.0 : /var/folders/q6/zswv_4wj16zbckfbdtl9lmyh0000gp/T/com.apple.dt.Xcode.pg/auxiliarymodules/C2294E15-2E60-47B3-8A0B-DABB2C0C3D88/MyPlayground_Sources.framework/Modules/MyPlayground_Sources.swiftmodule/x86_64.swift模块 导入 MyPlayground_Sources

这是我要执行的非常简单的代码。

class testClass{
    var property = "some property"
}
var test = testClass()
test.property

模块文件的最小部署目标是ios9.0是什么意思?

我想我找到问题所在了。

我在 Xcode 7.

中打开了一个 Xcode 6 playground 文件

当我在 Xcode 7 中创建一个新的游乐场时,它工作正常。