在 iPhone 上读取资源文本文件

发布于 2024-11-14 16:26:00 字数 340 浏览 4 评论 0原文

这主要是一个建议问题,因此非常感谢任何指点。

我有一个文本文件,我想在填充 UITableViews 时使用它。我只是不知道什么时候应该真正读取该文件,甚至不知道如何读取。我应该使用 NSFileManagerNSFileWrapper,还是应该自己推出? Nib 文件中是否需要对象占位符?

这个想法是创建一个利用导航-tableView-tabBar 组合的“库存”系统。

我试图弄清楚一些事情,但在启动并重新启动后,我意识到我应该寻求帮助。

规范包括 Xcode4、一些基本了解以及大约 13 个不同的废弃项目。

This is mainly an advice question, so any pointers are much appreciated.

I have a text file that I would like to draw on when filling UITableViews. I just don't know when I should actually read the file, or even how. Do I use NSFileManager, or NSFileWrapper, or should I roll my own? Will a Object Placeholder be needed in the Nib file?

The idea is to create an "inventory" system that utilizes a navigation-tableView-tabBar combo.

I've tried to figure out something, but after starting and restarting, I realized I should ask for help.

Specs include Xcode4, some basic understanding, and about 13 different trashed projects.

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

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

发布评论

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

评论(1

孤檠 2024-11-21 16:26:00

读取文件的时间和方式很大程度上取决于文件的大小。如果它是一个相当小的文件,那么您可以在-(void)viewDidLoad上同步读取它。如果它更大,那么您将需要异步读取它并显示活动指示器,直到读取完成。下面是将文本文件读入 NSString 的简单方法:

- (NSString *) getTextFromFile:(NSString *)filePath {
   return [NSString stringWithContentsOfFile:filePath usedEncoding:nil error:nil];
}

When and how you read the file will depend largely on the file size. If it is a fairly small file, then you can read it synchronously on -(void)viewDidLoad. If it is larger, then you will need to read it asynchronously and display an activity indicator until the read is finished. Here is a simple method for reading a text file into an NSString:

- (NSString *) getTextFromFile:(NSString *)filePath {
   return [NSString stringWithContentsOfFile:filePath usedEncoding:nil error:nil];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文