Tell me the difference between copy and retain?

Submitted by: Muhammad
Retaining an object means the retain count increases by one. This means the instance of the object will be kept in memory until it's retain count drops to zero. The property will store a reference to this instance and will share the same instance with anyone else who retained it too. Copy means the object will be cloned with duplicate values. It is not shared with any one else.
Submitted by: Muhammad

Read Online UX Designer Job Interview Questions And Answers