vote up 7 vote down star
6

Let's say I have a class called SomeClass with a string property name:

@interface SomeClass : NSObject
{
    NSString* name;
}

@property (nonatomic, retain) NSString* name;

@end

I understand that name may be assigned a NSMutableString in which case this may lead to errant behavior.

  • For strings in general, is it always a good idea to use the "copy" attribute instead of "retain"?
  • Is a "copied" property in any way less efficient than such a "retain-ed" property?
flag

69% accept rate

3 Answers

vote up 15 vote down check

For attributes whose type is an immutable value class that conforms to the NSCopying protocol, you almost always should specify copy in your @property declaration. Specifying retain is something you almost never want in such a situation.

Here's why you want to do that:

NSMutableString *someName = [NSMutableString stringWithString:@"Chris"];

Person *p = [[[Person alloc] init] autorelease];
p.name = someName;

[someName setString:@"Debajit"];

The current value of the Person.name property will be different depending on whether the property is declared retain or copy — it will be @"Debajit" if the property is marked retain, but @"Chris" if the property is marked copy.

Since in almost all cases you want to prevent mutating an object's attributes behind its back, you should mark the properties representing them copy. (And if you write the setter yourself instead of using @synthesize you should remember to actually use copy instead of retain in it.)

link|flag
vote up 5 vote down

Copy should be used for NSString. If it's Mutable, then it gets copied. If it's not, then it just gets retained. Exactly the semantics that you want in an app (let the type do what's best).

link|flag
vote up -4 vote down

I would argue that you should never use copy unless you really mean to make a copy of the object.

The reason why is it might break developer expectations. Other developers are probably expecting to be working with the same pointer when assigning objects around in code, and would expect a change to a value to reflect to all other classes pointing at that value. This is pretty subjective though depending on the developers background. (background in high level language vs low level language)

/edited out memory part since its superficial

link|flag
2  
That's just not the appropriate guidance for Cocoa developers, sorry. – Chris Hanson Dec 23 '08 at 2:19
Why should developer intentions around a mutable string be different then mutable dictionaries and mutable arrays? You wouldn't use copy with a mutable data provider would you? If something is created as mutable why would you expect to seal it off as you're passing it around? – seanalltogether Dec 23 '08 at 2:39
I think the guidance for mutable dictionaries and mutable arrays should be the same: if your class assumes that it's going to be the only one changing the data (or if it has a controlled way of allowing third parties to change it) it should copy the data when it comes from an outside source. – Evan DiBiase Dec 23 '08 at 2:53
I should mention, too, that you need to take the client into consideration. If the client isn't expecting that you'll change their data, you should make a copy when they pass it to you. So, combine that with my previous comment, and I think you arrive at Chris's guidance. – Evan DiBiase Dec 23 '08 at 2:59
The guidance for mutable collections actually is the same: If it's a relationship, you don't pass around mutable collections, you pass immutable collections but implement the appropriate KVC collection accessors and use -mutable{Array,Set}ValueForKey: to manipulate the relationship. – Chris Hanson Dec 23 '08 at 4:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.