I'd like to be sure about something.
Suppose I have a NSArray, with some objects. Suppose that those objects are observed.
Now, if I create another NSArray with the first one (initWithArray:copyItems:NO
), will the observation be untouched ?
And if I create with copying (initWithArray:copyItems:YES
), will the observation follow the new objects in the new array ?
Thanks !