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).
@Nic i think when you are adding that other view, at that time you should define the other views frame size like this:
Someviewcontroller *c = initWithNibName c.view.frame = CGRectMake(0, 0, 200, 200); [self addSubView:c];
i dont know if this will work but it is something like this.