Look this situation...
Why ???
Creating DetalhesViewController in code is unlikely to work correctly.
If you're going to use a storyboard and segues, then you should be making your connections there and configuring the new controller in prepareForSegue instead of didSelectRowAtIndexPath.
prepareForSegue:
instead - Phillip Mills 2012-04-05 16:24
I need…
http://www.4shared.com/photo/bMhvRNgN/ihavetodothis_2.htm - user1182833 2012-04-05 17:16
You should instantiate your view controller from storyboard.
DetalhesViewController *detailViewController = [self.storyBoard instantiateViewControllerWithIdentifier:@"controllerIdentifier"];
self.navigationController push:detailViewController animated:YES];
http://www.4shared.com/photo/1iRYibE-/notworking2.htm - user1182833 2012-04-05 16:19