I would like to ask what is the correct way to add and remove UIViewController's view as a child view. So, having UIViewController initialized I can add its view to view hierarchy as follows:

UIViewController *myViewControler = [[UIViewController alloc] init];
[someAnotherView addSubview:myViewController.view];

Question 1: Should I release myViewController.view after addSubview: call?

If I want to remove myViewController's view from view hierarchy I call [myViewController.view removeFromSuperview];

Question 2: How should I release myViewController instance in this case after its view removedFromSuperview?

link|improve this question

73% accept rate
feedback

1 Answer

up vote 0 down vote accepted
  1. You do not need to release the view, the owning view controller will do this for you.

  2. I normally put the declaration of myViewController in the header and then release and nil it when I am done with it (either somewhere in the normal flow or in the dealloc of the containing view controller).

link|improve this answer
regarding 2: if I just release myViewController its view will not be removed, if I have correct understanding... so in this case will it be correct to [myViewController.view removeFromSuperview]; and then [myViewController release]? – user478681 Apr 4 '11 at 13:14
That is correct, remove the view and release the controller at the point you no longer need them. – Simon Lee Apr 4 '11 at 13:17
feedback

Your Answer

 
or
required, but never shown

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