I can show a different view with this code:
[self presentModalViewController:childView animated:nil];
This code should do the same thing, right?
[self.navigationController pushViewController:childView animated:YES];
But it doesn't do anything. Why is that?