Statusbar overlaps ViewController
Posted
by Stefan
on Stack Overflow
See other posts from Stack Overflow
or by Stefan
Published on 2009-07-18T15:59:49Z
Indexed on
2010/05/23
22:20 UTC
Read the original article
Hit count: 311
Hi,
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:
How do I get my view to correct position?
Regards
© Stack Overflow or respective owner