Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなtexfileがあります。
line1 line2 line3 line4 line5 ....
ファイルから文字列の2つの配列に読み込んで、にline1, line3, line 5,...入る. 配列の各要素には 1 行が格納されます。array1line 2, line 4, line 6,...array2
line1, line3, line 5,...
array1
line 2, line 4, line 6,...
array2
ステップ 1) ファイルの読み取り ( [NSString stringWithContentsOfFile:encoding:error:])
[NSString stringWithContentsOfFile:encoding:error:]
ステップ 2) 文字列の分割 ( [NSString componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]])
[NSString componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]]
ステップ 3) 配列を繰り返し処理し、2 つの配列に挿入する