在 iPhone 上读取资源文本文件
这主要是一个建议问题,因此非常感谢任何指点。
我有一个文本文件,我想在填充 UITableViews
时使用它。我只是不知道什么时候应该真正读取该文件,甚至不知道如何读取。我应该使用 NSFileManager
或 NSFileWrapper
,还是应该自己推出? 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
读取文件的时间和方式很大程度上取决于文件的大小。如果它是一个相当小的文件,那么您可以在
-(void)viewDidLoad
上同步读取它。如果它更大,那么您将需要异步读取它并显示活动指示器,直到读取完成。下面是将文本文件读入NSString
的简单方法: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 anNSString
: