How can I append one NSMutableArray to another, from what I\'ve seen, it sound be fairly straight forward. But I\'m getting some weird results, I think the amount of items i
You can do that like this:
[self.transactionArray addObjectsFromArray:arrayTmp];
And on a side note, please always read the documentation before posting a question. This method is easily found in the NSMutableArray documentation.
You may have a typo. Look at the NSMutableArray method
- (void)addObjectsFromArray:(NSArray *)otherArray