一、如图所示的界面,按钮One、Two、Three分别对应三个控制器的view,点击实现切换。个人感觉父子控制器的重点在于,控制器的view们之间建立了父子关系,控制器不建立的话,发生在view上面的事件,对应的view可能接收不到,控制器们建立了父子关系后,可以将事件传递给相应的控制器。
练习代码如下:
#import "ViewController.h"
#import "OneTableViewController.h"
#import "TwoViewController.h"
#import "ThreeViewController.h" @interface ViewController ()
/** curView */
@property(nonatomic,strong) UIViewController *curVC;
/** old */
@property(nonatomic,assign) NSInteger oldIndex;
/** view */
@property(nonatomic,strong) UIView *contentView;
@end @implementation ViewController - (void)viewDidLoad {
[super viewDidLoad]; // 不给按钮,只给view做动画的解决办法 -- 多用一个view将要动画的view包起来,动画添加到这个view上
UIView *contentView = [[UIView alloc] initWithFrame:CGRectMake(, , self.view.bounds.size.width, self.view.bounds.size.height - )];
[self.view addSubview:contentView]; self.contentView = contentView; [self addChildViewController:[[OneTableViewController alloc] init]];
[self addChildViewController:[[TwoViewController alloc] init]];
[self addChildViewController:[[ThreeViewController alloc] init]]; } - (IBAction)btnClick:(UIButton *)sender { // 移除当前的
[self.curVC.view removeFromSuperview]; // 取出角标
NSInteger index = [sender.superview.subviews indexOfObject:sender];
// 根据角标从集合中取出相应的VC
self.curVC = self.childViewControllers[index]; self.curVC.view.frame = self.contentView.bounds;
[self.contentView addSubview:self.curVC.view]; CATransition *anim = [CATransition animation];
anim.type = @"cube";
anim.subtype = index > self.oldIndex ? kCATransitionFromRight : kCATransitionFromLeft;
anim.duration = 0.5;
[self.contentView.layer addAnimation:anim forKey:nil];
self.oldIndex = index; } @end
二、总结
- 如果两个控制的view是父子关系(不管是直接还是间接的父子关系),那么这两个控制器也应该为父子关系
[a.view addSubview:b.view];
[a addChildViewController:b];
// 或者
[a.view addSubview:otherView];
[otherView addSubbiew.b.view];
[a addChildViewController:b];- 获得所有的子控制器
@property(nonatomic,readonly) NSArray *childViewControllers;
- 添加一个子控制器
//XMGOneViewController成为了self的子控制器
//self成为了XMGOneViewController的父控制器
[self addChildViewController:[[XMGOneViewController alloc] init]];
// 通过addChildViewController添加的控制器都会存在于childViewControllers数组中- 获得父控制器
@property(nonatomic,readonly) UIViewController *parentViewController;
- 将一个控制器从它的父控制器中移除
// 控制器a从它的父控制器中移除
[a removeFromParentViewController];