December 2013
Beginner
576 pages
16h 4m
English
Recall the NSMutableArray class that enables you to create an array that you can add objects to and remove objects from. Suppose that at the start of execution of your program you need to read the contents of a file into an array. Assume you want to call new array myData and you want to initialize its contents from a file that is stored in the form of a property list (covered in more detail in Chapter 19, “Archiving”). You can do this with a single method call using NSArray’s arrayWithContentsOfFile: method like so:
NSSArray *myData = [NSArray arrayWithContentsOfFile: @"database1"];
This reads and parses the file and stores the resulting elements into a newly ...
Read now
Unlock full access