In a view Controller I am adding a UINavigationController and it has around 20-30 pixels on top of it. It doesnt fit the navigationCOntroller properly. For soem reason it adds the subview 20-30 px below
navController = [[UINavigationController alloc] init];
navController.navigationBar.tintColor = [UIColor grayColor];
UnitViewController *unitController = [[UnitViewController alloc] init];
[navController pushViewController:unitController animated:YES];
[self.view addSubview:navController.view];
Any Idea?