Ok here is what i am trying to do. In my root view controller I have the main view and then inside that view, i have three additional views. (note this is for the ipad).
Here is what I want to do. When the root view loads i want it to load the other three views as well and all have their own view controller.
Here is what I have attempted to far.
In my root controller xib I put in three view controllers and deleted their views. I then plugged into each controller view slot the views i have laid out within my root controller view. I also plugged in the view controller refrences with the ones i set up in rootcontroller.h
In my rootcontroller.m under the viewdidload i tried setting for example.
theViewController = [[ViewController alloc] initWithNibName:@"AView" bundle:[NSBundle mainBundle]];
but to no avail that did not work