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