Please explain me the below code of lines, I am just confused..,
Nsstring *a;
Nsstring *b;
a = [b retain];
what is the retain count of a & b.
a = [b copy];
what is the retain count of a & b.
Thanks in advance.
|
Please explain me the below code of lines, I am just confused..,
what is the retain count of a & b.
what is the retain count of a & b. Thanks in advance. |
||||
|
|
|
Technically the retain count in the situation you posted is indeterminate, since you never initialize your variables. Calling Second, the retain count in your situation depends on how you init your variables.
If you haven't done so yet, you should read Apple's memory management guidelines. Also, unless you have a very good reason not to, you should be using ARC, which frees you from most of the headaches from manually managing memory. In the comments on the other answer, you ask how to determine the retain count for an object. You always keep track of it yourself. Other objects may retain and release your string, but you don't care. If you create and object using |
|||||||||||||||
|
|
|
|||||||||||||||||||||
|