I have a root UIViewController that I am adding other UIViewController\'s as subviews. Currently each of the subviews are too low down (covering up my custom build tabbar).
Then there's always...
// Screen, less StatusBar CGRect l_RectFrame = [UIScreen mainScreen].applicationFrame;
OR...
// Entire Screen CGRect l_RectFrame = [UIScreen mainScreen].bounds; MyView *l_aView = [[MyView alloc] initWithFrame:l_RectFrame]; ...