I have tried to initialize my NSMutableArray 100 ways from Sunday, and NOTHING is working for me. I tried setting it equal to a newly allocated and initialized NSMutableArra
The synthesized setter for @property (copy) sends a copy message to the array, which results in an immutable copy.
@property (copy)
copy
You have no choice but the implement the setter yourself here, as detailed in the Objective-C guide.