我有以下的代碼創建了一個名爲num.txt文本文件中的字符串數組的代碼是工作在遊樂場而不是在Xcode項目
import Foundation
import UIKit
func linesFromResource(fileName: String) throws -> [String] {
guard let path = NSBundle.mainBundle().pathForResource("num", ofType: "txt") else {
throw NSError(domain: NSCocoaErrorDomain, code: NSFileNoSuchFileError, userInfo: [ NSFilePathErrorKey : fileName ])
}
let content = try String(contentsOfFile: path, encoding: NSUTF8StringEncoding)
return content.componentsSeparatedByString("\n")
}
let lines = try linesFromResource("num.txt")
print(lines)
一個文本文件中的字符串數組我的文件num.txt是位於操場
的資源文件夾並將其正常工作和做什麼打算,但是當我嘗試做同樣的事情在一個項目它給了我此錯誤消息:
出於某種原因,在項目中的文件「num.txt」不能叫我試圖創建一個資源文件夾,並把該文件存在,但它也不能工作,我是什麼做錯了?
你試過調試嗎? – dudeman