i have two nsmutablearray:
@property (nonatomic, strong) NSMutableArray *calSeries;
@property (nonatomic, strong) NSMutableArray *calSeries2Copy;
then i do this:
self.calSeries = [self getSeries];
self.calSeries2Copy = [NSMutableArray arrayWithArray:self.calSeries];
the getSeries method fetchObject from the core data, but if i change an element in the calSeries, it change also in the calSeries2Copy, how i can create two array separately so as when i change an element in one array don't change also in the other array?