在 IOS 5.1 上,我在故事板上的视图控制器中添加了一个容器视图。我想通过 连接该容器视图IBOutlet
,以便在 IB 上轻松管理它。
我尝试使用常规UIView
:
@property (nonatomic,weak) IBOutlet UIView *leftView; //connected this to container view on interface builder
那么,如果我使用它,它就不起作用
[self.leftView addSubview:tableVC.view];
如果我以编程方式添加一个 childview 控制器,它可以工作,但它当然会覆盖全屏。
- (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];
}
如何将容器视图连接到子视图控制器?