IOS:启动应用程序时读取txt文件
每次启动应用程序时,我应该读取 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在相关的视图控制器中(可能是viewDidLoad)。
它看起来像这样(未经测试):
In the relevant view controller (probably viewDidLoad).
It would look something like this (untested):
我猜这是您正在阅读的配置信息。我建议使用 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...