IOS:启动应用程序时读取txt文件

发布于 2024-11-28 23:17:52 字数 107 浏览 0 评论 0原文

每次启动应用程序时,我应该读取 5 个 txt 文件,其中存储了一些信息;那么从这些文件读取和存储数组中的数据的方法应该写入我的第一个视图控制器(我的第一个视图的类)或类 appdelegate 中?

Everytime I launch an app, I should to read 5 txt file where are stored some information; then the methods that read and stored data in array from these file should be write in my firstview controller (class of my first view) or in class appdelegate?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时光暖心i 2024-12-05 23:17:52

在相关的视图控制器中(可能是viewDidLoad)。

它看起来像这样(未经测试):

- (void)viewDidLoad {
    NSArray *fileNames = [NSArray arrayWithObjects:@"fileName1.txt", @"fileName2.txt", @"etc", nil];
    NSMutableArray *fileStrings = [[NSMutableArray alloc] init];
    for (int i = 0; i<[fileNames count]; i++) {
        NSString *aFileName = [fileNames objectAtIndex:i];
        NSString *aFilePath = [[NSBundle mainBundle] pathForResource:aFileName];
        NSString *aFileContents = [[NSString alloc] initWithContentsOfFile:aFilePath];
        [fileStrings addObject:aFileContents];
        [aFileContents release];
    }
    myStrings = fileStrings; // Some array to store to
}

In the relevant view controller (probably viewDidLoad).

It would look something like this (untested):

- (void)viewDidLoad {
    NSArray *fileNames = [NSArray arrayWithObjects:@"fileName1.txt", @"fileName2.txt", @"etc", nil];
    NSMutableArray *fileStrings = [[NSMutableArray alloc] init];
    for (int i = 0; i<[fileNames count]; i++) {
        NSString *aFileName = [fileNames objectAtIndex:i];
        NSString *aFilePath = [[NSBundle mainBundle] pathForResource:aFileName];
        NSString *aFileContents = [[NSString alloc] initWithContentsOfFile:aFilePath];
        [fileStrings addObject:aFileContents];
        [aFileContents release];
    }
    myStrings = fileStrings; // Some array to store to
}
十年九夏 2024-12-05 23:17:52

我猜这是您正在阅读的配置信息。我建议使用 pList 而不是使用文本文件。

苹果确实优化了 & 的读取。到一个plist。希望这有帮助...

I am guessing this is configuration info that you are reading. I would suggest using a pList instead of using text files.

Apple has really optimized reading from & to a plist. Hope this helps...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文