我正在尝试在xcode 7中使用playground来测试一些代码但由于某种原因它不会运行。
这是我得到的错误
游乐场执行失败:/var/folders/q6/zswv_4wj16zbckfbdtl9lmyh0000gp/T/./lldb/11352/playground14.swift:1:8:错误:模块文件的最低部署目标是ios9.0 v9.0:/ var /文件夹/ Q6 / zswv_4wj16zbckfbdtl9lmyh0000gp / T / com.apple.dt.Xcode.pg / auxiliarymodules / C2294E15-2E60-47B3-8A0B-DABB2C0C3D88 / MyPlayground_Sources.framework /模块/ MyPlayground_Sources.swiftmodule / x86_64.swiftmodule 导入MyPlayground_Sources
这是我正在尝试执行的非常简单的代码。
class testClass{
var property = "some property"
}
var test = testClass()
test.property
模块文件的最低部署目标是什么意思ios9.0?
答案 0 :(得分:0)
我想我发现了问题所在。
我在Xcode 7中打开了一个Xcode 6操场文件。
当我在Xcode 7中创建一个新游乐场时,它可以正常工作。