I have this code to open a view controller with storyboard
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
secondViewController = [storyboard instantiateViewControllerWithIdentifier:@"SecondViewController"];
[self.view addSubview:secondViewController.view];
and it work fine, but when I remove it I want release secondViewController
[secondViewController.view removeFromSuperview];
and for release it??? there isn't an alloc when I call secondViewController...