17. Memory Management and Automatic Reference Counting

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 ...

Get Programming in Objective-C, Fourth Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.