-
Notifications
You must be signed in to change notification settings - Fork 84
/
NSDictionary_DeepMutableCopy.m
38 lines (32 loc) · 1.19 KB
/
NSDictionary_DeepMutableCopy.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// NSDictionary_DeepMutableCopy.m
//
// Created by Matt Gemmell on 02/05/2008.
// Copyright 2008 Instinctive Code. All rights reserved.
//
#import "NSDictionary_DeepMutableCopy.h"
@implementation NSDictionary (DeepMutableCopy)
- (NSMutableDictionary *)deepMutableCopy
{
NSMutableDictionary *newDictionary;
NSEnumerator *keyEnumerator;
id anObject;
id aKey;
newDictionary = [self mutableCopy];
// Run through the new dictionary and replace any objects that respond to -deepMutableCopy or -mutableCopy with copies.
keyEnumerator = [[newDictionary allKeys] objectEnumerator];
while ((aKey = [keyEnumerator nextObject])) {
anObject = [newDictionary objectForKey:aKey];
if ([anObject respondsToSelector:@selector(deepMutableCopy)]) {
anObject = [anObject deepMutableCopy];
[newDictionary setObject:anObject forKey:aKey];
} else if ([anObject respondsToSelector:@selector(mutableCopyWithZone:)]) {
anObject = [anObject mutableCopyWithZone:nil];
[newDictionary setObject:anObject forKey:aKey];
} else {
[newDictionary setObject:anObject forKey:aKey];
}
}
return newDictionary;
}
@end