I have an array of objects
I want to copy the array and all contents of it
"Object" implements NSCopying
I thought that doing
NSArray *copiedArray = [array copy];
would trigger copyWithZone in the objects contained inside of it.
Unfortunally not...
How can this be done?