Reputation: 1019
Is this valid:
NSObject anObject = [[NSObject alloc] init];
[array1 addObject:anObject];
[array2 addObject:anObject];
My money is on yes, since I'm only adding references to the same object, or am I wrong here?
Upvotes: 0
Views: 394