Hi,
I generate a ViewController / View in my window based application. It will show directly at startup, it works, no problem.
But on the buttom, the View has Space left, its exactly the space the status bar needs on the top, so I think I must put my View under the status bar, not behind it.
How to do?
Code:
StartViewController *a = [[StartViewController alloc] initWithNibName:@"bla"];
[self setStartViewController:a];
[a release];
[window addSubviewl:[StartViewController view]];