I added a subview using
myViewController *myVC = [[myViewController alloc] initWithNibName:@"myView" bundle:nil];
[self addSubview:myVC.view];
[myVC release];
how can I remove it again from a myViewController method ?
I tried
[self.view removeFromSuperview];
but that doesn't work