how reference copy is handled in Objective-C?
- by Cathy
Object graph
[Instance A]
tree
/ \
/ \
/ \
↓ ↓
[Instance B] [Instance C]
apple bug
Question
Instance A has to reference copies to Instance B and Instance C.
If I retain or release Instance A, which has references to the other two instances, what happens to the various reference counts?