I am trying to edit an NSMutableArray to place into a dictionary.
aFinalized [1][@"round_number"] = [[NSString alloc] initWithFormat:@"%i",aRound[1]]; // which is #1I do the NSLog and it shows that I have 7 different Objects, but when I change the obect for aFinalaized [1] as above. It changes it for ALL of them. I don't get it?
Example: Prior to code above...
2015-09-07 17:04:14.575 Poker Setup & Timer[217:5819]
aFinalizedR= (
{
"round_number" = 0;
},
{
"round_number" = 0;
},
{
"round_number" = 0;
},etc...Example: After code Above...
2015-09-07 17:05:48.317 Poker Setup & Timer[217:5819]
aFinalizedR= (
{
"round_number" = 1;
},
{
"round_number" = 1;
},
{
"round_number" = 1;
}, etc...Please Help, this seems so easy, but I've been trying differen't things all day!