This piece of code works fine. However, if I change the animated
parameter to YES it crashes.
AccountViewController *accViewController = [[AccountViewController alloc] initWithNibName:@"Account" bundle:nil];
[self.navigationController pushViewController:accViewController animated:NO];
[accViewController release];
What could be wrong?