我无法从
Swift的.text文件中读取文本字符串.
var writeError: NSError? let theFileToBeWritten = theStringWillBeSaved.writeToFile(pathToTheFile,atomically: true,encoding: NSUTF8StringEncoding,error: &writeError);
但是每当我尝试使用“String.stringWithContentsOfFile”读取文件时,我得到“’String.Type’没有名为’stringWithContentsOfFile’的成员. stringWithContentsOfFile也不会显示在自动完成中.
我正在使用Xcode 6.1 GM Seed 2.
我看到有人使用“stringWithContentsOfFile”从许多教程和堆栈溢出文件中读取文本,但为什么它不适用于我?
尝试这样的东西:
原文链接:https://www.f2er.com/swift/319651.htmlvar error:NSError? let string = String(contentsOfFile: "/usr/temp.txt",encoding:NSUTF8StringEncoding,error: &error) if let theError = error { print("\(theError.localizedDescription)") }
Swift 2.2:
if let string = try? String(contentsOfFile: "/usr/temp.txt") { // Do something with string }