I have a model class which contains an NSMutable array of objects. The controller classes need to have access to this array, however that access should be read only.
How should this be implemented? Should the model expose the array as a (readonly) NSMutable array and use consts, or expose it as an NSArray? If the latter how can the NSArray be created efficiently from the NSMutableArray i.e. how should the NSArray contain a reference to the NSMutableArray/its contents rather than have duplicate copies? (the NSMutableArray is guaranteed to persist in memory while the controllers access it).