我在哪里为Xcode 7中的iOS应用程序提供资源?

时间:2015-12-29 06:19:13

标签: xcode resources xcode7

我正在建立一个iOS应用程序,我需要在文本文件中阅读。我将这个文件放在Xcode中以便正确读取它?

1 个答案:

答案 0 :(得分:1)

如果我的问题是对的,

只需拖放xcode即可添加文件: enter image description here

对于您的文件名为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 */}
}