我,我正在编写一个必须读取 txt 内容的应用程序。这个 txt 就是这样一个属性文件,其列表格式如下:
1|Chapter 1|30
2|Chapter AA|7
3|Story of the United States|13
........
键用“|”分隔。
我在谷歌上搜索了很多,希望能找到任何“实用的解决方案”,但什么也没有……我如何阅读这些信息并设置许多对象,例如:
for NSInterger *nChapter = the first element
for NSString *title = the second element
for NSInteger *nOfPages = the last element ?