I have two questions:
I have an object, call it X. When I assign retain to object X (
[x retain]) and then change data in the object X, what will be the retain count of X?I have two objects, A & B. I first do a copy like this:
B = [A copy];
and now I change data in object A. Will the B data also change, and what will be reference count of both A & B before and after the change of data?