ViewController添加子控制器 并且弹出

/**

*  初始化子控制器

*/

- (void)setupChildVcs

{

for (int i = 0; i<6; i++) {

UIViewController *vc = [[UIViewController alloc] init];

vc.view.backgroundColor = HMRandomColor;

[self addChildViewController:vc];

}

// 默认选中第0个控制器

[self switchChildVc:0];

}

/**

*  切换子控制器

*

*  @param index 最新子控制器的索引

*/

- (void)switchChildVc:(int)index

{

// 切换子控制器

// 移除当前正在显示的子控制器

[self.showingChildVc.view removeFromSuperview];

// 显示index对应的子控制器

UIViewController *newChildVc = self.childViewControllers[index];

[self.view addSubview:newChildVc.view];

self.showingChildVc = newChildVc;

}

上一篇:【转】Undefined symbols for architecture i386:和"_OBJC_CLASS_$_xx", referenced from:问题解决方法


下一篇:margin-top失效的解决方法