Swift’String.Type’没有名为’stringWithContentsOfFile’的成员

前端之家收集整理的这篇文章主要介绍了Swift’String.Type’没有名为’stringWithContentsOfFile’的成员前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我无法从 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”从许多教程和堆栈溢出文件中读取文本,但为什么它不适用于我?

尝试这样的东西:
var 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
}
原文链接:https://www.f2er.com/swift/319651.html

猜你在找的Swift相关文章