I'm looking over Apple's sample application EditableDetailView, and noticed that in one of their controllers, they're setting an instance of NSString property with (nonatomic, copy). When would one use copy instead of retain? Is this so they can make a unique copy without affecting the existing data?
|
2
|
|
|
|
|
|
Yes, it's so that it can make a unique copy without affecting the existing data. The synthesized setters essentially look like this:
Note the order of operations here is important - the new value must be retained/copied before the old value is released, in case of self-assignment. If you released first and then assigned the property to itself, you might deallocate the value by accident. Also note that if the old value is The choice of retaining versus copying just determines whether or not the object's property shares the same value with what you're setting it to. Consider the following code:
|
||
|
|
|
|
did you mean that i have to copy 'the foo' object before releasing 'foo'??but whats the problem if i relaese 'foo' before copying 'the foo'??because they are two different object i can't understand why releasing one affect other!!!! and I need some easy and simple explanation about delegate.i read a lot about it but none of them gave a precise idea. |
||
|
|
|
instead of writing:
is it possible to write-???
|
||||
|
|
|
Remember that there is an NS*Mutable*String. It would be really bad to be able to mutate the contents of a string that some other object owns (say, by deleting half its characters), especially if you don't realize you're affecting another object. Therefore, it's nice for the other object to make its own copy. You may say “well, why don't I just copy the string before assigning it there?”. Maybe the object wants a mutable string and yours is immutable. If you have to copy the string first, then you have to look up which kind of string it wants in its documentation or header, then make the right kind of copy (every time). This way, you just say |
||
|
|
