Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a NSMutableArray which contains some NSMutableDictionary object type. In some situations I have to add one field to each NSMutableDictionary inside this Array, but I don't know how?

I do add object (field) into my NSMutableDictionary like this.

NSMutableDictionary *item = [[NSMutableDictionary alloc]initWithDictionary:[timeSlots objectAtIndex:indexPath.row]];

[item setObject:cell forKey:@"cell"];

Now how am I going to update the Array (timeSlots)?

share|improve this question

2 Answers

up vote 2 down vote accepted

Just add this line after changing the mutable dictionary:

[timeSlots replaceObjectAtIndex:indexPath.row withObject:item];
share|improve this answer

Depending on your needs of course, but this would be a starting point:

for (NSMutableDictionary *aDictionary in array) {
    [aDictionary setObject:cell forKey:@"cell"];
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.