0

私は、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 ?
4

2 に答える 2

1

NSString- (NSArray *)componentsSeparatedByString:(NSString *)separatorはあなたの親友になるかもしれません。

https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSString_Class/Reference/NSString.html#//apple_ref/doc/uid/20000154-componentsSeparatedByString_

于 2012-08-07T14:37:03.283 に答える