Match *aMatch = [appDelegate.matchScoresArray
objectAtIndex:numMatchCounter];
aMatch.teamName2 = TeamNameHolder;
[appDelegate.matchScoresArray replaceObjectAtIndex:NumMatchCounter
withObject:aMatch];
numMatchCounter++;
Does this make sense or is the change i made to teamName2 already reflected in the array, since they are the same object?
Or am I right to copy the object over itself back into the array.
I'm really confused.
Thanks -Code