Definition at line 27 of file TSXAdditions.h.
◆ mutableDeepCopy
Definition at line 1 of file TSXAdditions.m.
134{
135 NSMutableDictionary *newDictionary = [[NSMutableDictionary alloc] init];
136 NSEnumerator *enumerator = [self keyEnumerator];
137 id key;
138 while ((key = [enumerator nextObject]))
139 {
140 id obj = [[self objectForKey:key] mutableDeepCopy];
141 [newDictionary setObject:obj forKey:key];
142 [obj release];
143 }
144 return newDictionary;
145}
The documentation for this category was generated from the following files: