使用Xcode开发ios应用程序时如何读取文本文件

时间:2018-07-16 03:44:07

标签: ios swift xcode file text

我现在正在使用xcode(Swift)开发一个iOS应用。我想导入存储在文本文件中的数据,并在屏幕上显示文本文件中的单词。如何将现有文本文件导入项目?我应该安装什么吗?如何读取文本文件并将单词存储在数组中?

1 个答案:

答案 0 :(得分:0)

您可以在iOS中轻松读取文件。请按照下列步骤操作:

步骤1:将文件添加到项目中

enter image description here

第2步:读取文件

编辑

迅速:

    let filePath = Bundle.main.path(forResource: "File", ofType: "txt");
    let URL = NSURL.fileURL(withPath: filePath!)

    do {
        let string = try String.init(contentsOf: URL)

        // use string here
        print("read: " + string)
    } catch  {
        print(error);
    }

Objective-C:

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"file" ofType:@"txt"];
NSURL *url = [NSURL fileURLWithPath: filePath];
NSString *string = [[NSString alloc] initWithContentsOfURL:url encoding:NSUTF8StringEncoding error:nil];

谢谢!