I have two arrays and I would like to append one to the end of the other. How can I go about doing this?
self.itemsCopy = [self.items mutableCopy];
Will copy the array, but I would like to append self.items.
I have two arrays and I would like to append one to the end of the other. How can I go about doing this?
self.itemsCopy = [self.items mutableCopy];
Will copy the array, but I would like to append self.items.