December 2011
Beginner
600 pages
11h 25m
English
Recall the NSMutableArray class that enables you to create an array that you can add objects to and remove objects from. Suppose at the start of execution of your program you needed 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 created array, returning the reference ...
Read now
Unlock full access