如何在数组 iOS Swift 中使用 txt 文件

How can I use a txt file in an Array iOS Swift

我正在尝试使用数组中 txt 文件中的数据显示在不同的 TextView 上,具体取决于所选的 TableCell。如何在数组中使用下面的 txt 文件?

    let path = NSBundle.mainBundle().pathForResource("HelloWorldProgramming", ofType: "txt")

    if let content = String(contentsOfFile:path!, encoding: NSUTF8StringEncoding, error: nil) {

        TextView.text = content
    }

您可以将文本文件的每一行分隔为数组中的字符串,如下所示:

let path = NSBundle.mainBundle().pathForResource("HelloWorldProgramming", ofType: "txt")
if let content = String(contentsOfFile:path!, encoding: NSUTF8StringEncoding, error: nil) {
    let arrayOfLines = content.componentsSeparatedByString( "\n" )
}