How come this object is released right after it's instantiated? From a book example I'm learning fro
- by HD-VRSCA
BlueViewController *blueController = [[ BlueViewController alloc] initWithNibName:@"BlueView" bundle:nil];
self.blueViewController = blueController;
[self.view insertSubview:blueController.view atIndex:0];
[blueController release];