7
我有我的IOS9 Xcode項目內.playground文件此錯誤消息:遊樂場的Xcode:無法獲得沙箱擴展
2015-10-28 16:28:45.159 Playground[83944:17501939] Failed to obtain sandbox extension for path=/var/folders/h7/cbc1x51x2rs7sjzfk0ndtxkr0000gp/T/com.apple.dt.Xcode.pg/containers/
我做了什麼是:
- 開始的Xcode 7 /斯威夫特2項目
- 使用 「吊艙安裝Alamofire」
- 創建一個.playground文件與此代碼:
進口Alamofire
Alamofire.request(.GET, "http://httpbin.org/get" , parameters: ["foo": "bar"]).responseJSON { response in
print(response.request) // original URL request
print(response.response) // URL response
print(response.data) // server data
print(response.result) // result of response serialization
let str = response.data!
if let JSON = response.result.value {
print("JSON: \(JSON)")
}
}
我怎麼能測試這個庫.playground文件中沒有錯誤?
你解決了嗎?重新啓動計算機不起作用。 – karlingen
還沒解決 –
我開始賞金了! – karlingen