Suppose that i have UIView viewLoading declared in .h. and i do not directly initialize it (in the first code).

The first Code.

 UIView *viewLoading2 = [[[UIView alloc] initWithFrame:CGRectMake(75 , 155, 170.0, 170.0)]];
 viewLoading = viewLoading2;
 [viewLoading2 release]

The second code:

viewLoading = [[[UIView alloc] initWithFrame:CGRectMake(75 , 155, 170.0, 170.0)]];

The third Code:

- (void) viewLoad:(UIView *) viewLoading2
{
  viewLoading = viewLoading2;
  //do i need to retain, alloc, or release something here?

}
  1. 2In the first code, do i need to release viewLoading in dealloc ? And what happen if i do not declare its property?

  2. In the second code, does it have same effect from the first code? (need to dealloc or not).

  3. For the third code, does it have same effect from the first code? and what should i do after i code that? (see the comment)

  4. Do iPhone Code always need to have release for variable declared in .h? Or only if the variable declared in .h is allocated? if like in the first code, do i need to dealloc viewLoading?

  5. what is the different between

    self.viewloading = viewLoading2;

and

viewloading = viewLoading2; 

Thanks

link|improve this question

25% accept rate
feedback

1 Answer

up vote 3 down vote accepted

In the first example, you allocated the object (once), and you released it (once), so you don't need to do anything else. On the other hand, viewLoading is invalid as soon as you send the release to viewLoading2, so it's not very useful code.

In the second, you have not released viewLoading yet, so it does need to be done eventually.

In the third, whatever code allocated the object that was passed into this method via the parameter is responsible for releasing it. It should be valid for the duration of this method, but if you're saving it for later use you need to retain it here, then release it when you're done.

Edit:

I'm not sure I understand your question 4. A declaration in the interface (.h) file is just reserving space for a pointer. It's not an object declaration, so there's no release required until you actually do an object allocation.

self.viewloading = viewLoading2 is using the properties setter method to do the assignment. If the @property statement has "retain" in it, then a retain is done as part of that assignment. `viewloading = viewLoading2" is a straight assignment, no retain.

link|improve this answer
Hello, thanks for the answer. So in the first code, it is invalid or not? because you said "as soon as you send the relese to viewLoading2, its not very useful code". Does not the viewLoading2 retain by viewLoading? and do i need to do release for viewLoading? For 2nd code, can i just leave the release to dealloc? – edric_s Oct 27 '11 at 15:14
I've also edit my question. Maybe you can answer it also :D – edric_s Oct 27 '11 at 18:16
Let me clarify my answer to code 1. It's valid syntax, and there's no memory leak, but it's useless code because viewLoading is pointing to an object that has already been released. All you did in the assignment statement was make both pointers point to the same object, which you then released. So they're both pointing to a memory location which no longer has a valid object in it. – Flyingdiver Oct 28 '11 at 18:59
So if my first code is self.viewLoading = viewLoading2 i need to release viewloading2 right (to prevent memory leak)? If i do not alloc viewLoading and then i do like in the first cod (assign viewLoading = viewLoading2), do i need release viewLoading in dealloc? – edric_s Oct 29 '11 at 10:54
You ALWAYS need to release viewLoading2 (somewhere) because you just allocated it. If you do self.viewLoading = viewLoading2, then you can use viewLoading elsewhere and release it when you're done (probably in dealloc). This is basic (pre-ARC) memory management. – Flyingdiver Oct 29 '11 at 15:52
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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