Here are the newReferenceArray accessor methods:
<BLOCKQUOTE><font size="1"face="Geneva, Verdana, Arial">code:</font><HR><pre><font size=1 face=courier>
-(NSMutableArray *)newReferenceArray {
return newReferenceArray;
}
-(void) setNewReferenceArray

NSMutableArray *)array {
[array retain];
[newReferenceArray release];
newReferenceArray=array;
}
</font>[/code]
newReferenceArray is declared in the class header. It's first and only use prior to the addObject method in the code block of my first post is it's allocation in the init method of the class:
<BLOCKQUOTE><font size="1"face="Geneva, Verdana, Arial">code:</font><HR><pre><font size=1 face=courier>
-(id) init
{
if (self =[super init]) {
[self setReferenceDictionary:[NSMutableDictionary dictionary]];
[self setNewReferenceArray:[NSMutableArray array]];
[self setNumberOfNewReferences:[NSNumber numberWithInt: <font color = blue>0</font>]];
}
return self;
}
</font>[/code]
kman