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

@implementation NSArray (MGLAdditions)

- (NSMutableArray *)deepMutableCopy
{
    return (NSMutableArray *)CFBridgingRelease(CFPropertyListCreateDeepCopy(kCFAllocatorDefault, (CFArrayRef)self, kCFPropertyListMutableContainersAndLeaves));
}

@end