Let's say I have an object called Person. Person internally loaded an UIImage called "person.png".
In my app i create many Person objects, creating and even deleting them at runtime.
Since a Person object internally has a retained reference to UIImage, does this mean each Person has a unique memory allocation for the image?
Or do all Person objects point to the same memory location for the image?