I have a UIViewController that I want to destroy, so I can expose the view below (the parent view)
both of these lines seem to work the same, but which should I choose?
[self.view removeFromSuperview];
[self release];
I'm also open to other ways of accomplishing the same thing.
both of these lines seem to work the same, but which should I choose?
[self.view removeFromSuperview];
[self release];
I'm also open to other ways of accomplishing the same thing.