Given:
An existing NSMutableDictionary named oldDictionary.
Goal:
Copy oldDictionary to a another dictionary named newDictionary and if newDictionary has been modified – e.g., the values of some keys are changed – then oldDictionary should update to reflect the change as well.
Question:
What is the best way to do that?
Please advise me on this issue.