5
我正在寫一個簡單的應用程序讀取CSV文件斯威夫特,我希望能夠使用相同的代碼在遊樂場和作爲輸入文件到swift
命令。如何確定銀行代碼是否是內部的XCode運行遊樂場
要閱讀遊樂場文件我都用這個代碼
let filePath = XCPlaygroundSharedDataDirectoryURL.URLByAppendingPathComponent("data.csv")
我想實現這樣的:
#if PLAYGROUND
import XCPlayground
let filePath = XCPlaygroundSharedDataDirectoryURL.URLByAppendingPathComponent("data.csv")
#else
let filePath = NSURL.fileURLWithPath("data.csv")
#endif
我想你可以使用捆綁標識符以確定'runni納克在操場上 - 我記得它像'com.apple playground'。?。 – Michael