summaryrefslogtreecommitdiff
path: root/platform/ios/NSDictionary+MGLAdditions.m
blob: 3228d5653353fa6bb41c97a84414e4adb192743b (plain)
1
2
3
4
5
6
7
8
9
10
#import "NSDictionary+MGLAdditions.h"

@implementation NSDictionary (MGLAdditions)

- (NSMutableDictionary *)deepMutableCopy
{
    return (NSMutableDictionary *)CFBridgingRelease(CFPropertyListCreateDeepCopy(kCFAllocatorDefault, (CFDictionaryRef)self, kCFPropertyListMutableContainersAndLeaves));
}

@end