I in my AppDelegate, I use:
ActivitiesViewController *acController = [[ActivitiesViewController alloc] initWithNibName:@"ActivitiesView" bundle:[NSBundle mainBundle]];
UINavigationController *acNavController = [[UINavigationController alloc] initWithRootViewController:acController];
[self.tabBarController setSelectedIndex:0];
[self.tabBarController setSelectedViewController:acNavController];
To switch the views in my TabBarController. The result is to close to the window top:
alt text http://img.skitch.com/20090718-tpgya2nt4yeadacgs54dh8syp2.png
How do I get my view to correct position?
Regards