On IOS 5.1 I have added a container view to a viewcontroller on storyboard. I want to connect that container view via IBOutlet, so I can manage it easily on IB.
I have tried to use a regular UIView:
@property (nonatomic,weak) IBOutlet UIView *leftView; //connected this to container view on interface builder
then, if I use this, it doesn't work
[self.leftView addSubview:tableVC.view];
If I add a childview controller programmatically it works but it covers full screen of course.
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
UIStoryboard* sb = [UIStoryboard storyboardWithName:@"MainStoryboard"
bundle:nil];
UITableViewController *tableVC = [sb instantiateViewControllerWithIdentifier:@"LogMasterViewController"];
[self.view addSubview:tableVC.view];
[self addChildViewController:tableVC];
[tableVC didMoveToParentViewController:self];
}
How can I connect container view to child view controller?
storyboardWithNamevs justself.storyboard? Are you changing storyboards? And when you tried to useself.leftView, can you confirm that it was notnil? I just tested your code, usingself.leftView(and setting the frame, accordingly) and it works fine, so I'm trying to figure out what's going on here. And when you say "it doesn't work" when you useleftView, do I infer that you see absolutely nothing change on the screen? – Rob Feb 5 at 18:12