If I understand this correctly, copy
enforces the setter to create a copy of the object passed in. However, if I use it together with readonly
, there won't be a setter. So is my assumption correct, that combining @property (copy, readonly)
doesn't make any sense or am I missing something?