Scenario explanation:
Read the contents of several .txt
extension files and save the strings
of each file separately to a NSArray
, in this case, in each array index.
Obstacle: - There are more than 60 different files, although the text is small. - They have different names Eg: Binder desc.txt, descLampada.txt.
NOTE: I've already got a method to read the files and store them in a string
. But the problem is to read multiple files at once, and have control over the order in which they are kept in NSArray
.