如果我的问题是对的,
只需拖放xcode即可添加文件:
对于您的文件名为sample.txt
,您只需使用以下内容即可阅读:
if let path = NSBundle.mainBundle().pathForResource("sample", ofType: "txt"){
//reading
do {
let text = try NSString(contentsOfFile: path, encoding: NSUTF8StringEncoding)
print(text)
}
catch {/* error handling here */}
}