Trying to figure out why my view is being pushed up into the nav controller. From, the documentation...
"The view is automatically resized to fit between the navigation bar and toolbar (if present) before it is displayed."
In my case it is not. The view doesn't seem to take into account the fact a nav bar is there.
Any ideas?
MultiSalesViewController *childController;
childController = [[MultiSalesViewController alloc] initWithNibName:@"MultiSalesView" bundle:nil];
[self.navigationController pushViewController:childController animated:NO];