我正在尝试在 xcode 7 中使用 Playground 来测试一些代码,但由于某种原因它不会运行。
这是我得到的错误
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.swiftmodule import MyPlayground_Sources
这是我要执行的非常简单的代码。
class testClass{
var property = "some property"
}
var test = testClass()
test.property
模块文件的最小部署目标是ios9.0是什么意思?