我正在尝试从swift iOS项目中的Resource文件夹中读取.txt文件。功能是
class func readFile(){
var filePath = NSBundle.mainBundle().pathForResource("testfile", ofType:"txt")
var dataout = NSString(contentsOfFile: filePath!, encoding: NSUTF8StringEncoding, error: nil)
println(dataout)
}
我的文字文件是
这是一项测试
控制台输出
可选(这是一项测试 )
我无法弄清楚Optional()是什么????