如何使用addChildViewController来自定义ViewController

代码下载地址:https://github.com/JLHuu/TestChildVcs.git


Xcode虽然提供了像tabbarViewcontroller这样的类,但是依然满足不了需求。还好苹果为我们提供了ChildViewController这个api,让我们可以随心所欲的定制自己需要的ViewController。

本文主要以一个例子来见证如何使用childViewcontroller来自定义ViewControler。

首先创建一个BaseViewController的基类,在他的viewDidLoad,viewWillAppear,viewWillDisappear方法里面写上这段代码

NSLog(@"%s,%@",__FUNCTION__,NSStringFromClass([self class]));

以便,后续观察各个界面跳转的生命周期是否如预期那样。

然后创建三个子viewcontroller和一个父ViewControler都继承自BaseViewController,分别命名为FViewController,SViewController,TViewController和ParentViewController。在三个子视图控制器的viewDidLoad中设置三个视图颜色分别为红,绿,蓝色,以便区别。

在父控制器中我们定义几个属性:

@property(nonatomic,strong)UISegmentedControl *control;

@property(nonatomic,strong)FViewController *fvc;

@property(nonatomic,strong)SViewController *svc;

@property(nonatomic,strong)TViewController *tvc;

@property(nonatomic,strong)BaseViewController *currentvc;// 当前子视图vc

UISegmentedControl是用来点击控制跳转的

在viewdidload中对视图进行初始化,只add一个子视图控制器,这样父控制器只需要管理一个控制器。

- (void)viewDidLoad {

[super viewDidLoad];

// Do any additional setup after loading the view.

_control = [[UISegmentedControl alloc] initWithItems:@[@"FVC",@"SVC",@"TVC"]];

_control.backgroundColor = [UIColor grayColor];

_control.frame = CGRectMake((CGRectGetWidth(self.view.frame)-150)/2, 30, 150, 30);

[_control addTarget:self action:@selector(ChangedSegment:) forControlEvents:UIControlEventValueChanged];

[self.view addSubview:_control];

[_control setSelectedSegmentIndex:0];//默认第一个

_fvc = [[FViewController alloc] init];

[_fvc.view setFrame:self.view.bounds];

// 设置完view的fream,就会走viewdidload

// 其他的vcs在视图控制器交换完成的时候就会进行视图加载

_svc = [[SViewController alloc] init];

_tvc = [[TViewController alloc] init];

[self addChildViewController:_fvc];// 默认是第一个vc

[self.view addSubview:_fvc.view];

_currentvc = _fvc;

[self.view bringSubviewToFront:_control];

}

视图交换主要用到几个方法

- (void)transitionFromViewController:(UIViewController *)fromViewController toViewController:(UIViewController *)toViewController duration:(NSTimeInterval)duration options:(UIViewAnimationOptions)options animations:(void (^ __nullable)(void))animations completion:(void (^ __nullable)(BOOL finished))completion NS_AVAILABLE_IOS(5_0);

- (void)willMoveToParentViewController:(nullable UIViewController *)parent NS_AVAILABLE_IOS(5_0);

- (void)didMoveToParentViewController:(nullable UIViewController *)parent NS_AVAILABLE_IOS(5_0);

第一个方法是对俯视图的两个子视图控制器的进行切换过渡。

下两个方法是在容器类视图控制器(父视图控制器)在对子视图控制器进出容器过渡时调用的。

贴一段注释:

/*

These two methods are public for container subclasses to call when transitioning between child

controllers. If they are overridden, the overrides should ensure to call the super. The parent argument in

both of these methods is nil when a child is being removed from its parent; otherwise it is equal to the new

parent view controller.

addChildViewController: will call [child willMoveToParentViewController:self] before adding the

child. However, it will not call didMoveToParentViewController:. It is expected that a container view

controller subclass will make this call after a transition to the new child has completed or, in the

case of no transition, immediately after the call to addChildViewController:. Similarly

removeFromParentViewController: does not call [self willMoveToParentViewController:nil] before removing the

child. This is also the responsibilty of the container subclass. Container subclasses will typically define

a method that transitions to a new child by first calling addChildViewController:, then executing a

transition which will add the new child's view into the view hierarchy of its parent, and finally will call

didMoveToParentViewController:. Similarly, subclasses will typically define a method that removes a child in

the reverse manner by first calling [child willMoveToParentViewController:nil].

*/

大概意思就是说:这两个方法在重写是,我们要知道他们在哪儿调用的。在容器控制器调用addChildViewController时在加入子视图控制器前会自动调用[子视图控制器 willMoveToParentViewController:父视图控制器],但是不会调用didMoveToParentViewController这个方法。这个方法我们应该在过渡完成后调用,或者在没有使用过渡时在addChildViewControler后立即调用。而[child willMoveToParentViewController:nil]这个方法则是在视图过渡完成后定义的和didMoveToParentViewController相反的方法,也就是说在成功过渡后再removeFromParentViewController之前调用即可。

点击segment控制代码

if (sender.selectedSegmentIndex == 0 && _currentvc != _fvc) {

[self transitionVC:_currentvc toVC:_fvc];

}

if (sender.selectedSegmentIndex == 1 && _currentvc != _svc) {

[self transitionVC:_currentvc toVC:_svc];

}

if (sender.selectedSegmentIndex == 2 && _currentvc != _tvc) {

[self transitionVC:_currentvc toVC:_tvc];

}

视图过渡代码如下:

- (void)transitionVC:(BaseViewController *)currentvc toVC:(BaseViewController *)newvc

{

// 加入子视图vc才可交换

[self addChildViewController:newvc];

// 子视图vc交换

[self transitionFromViewController:currentvc toViewController:newvc duration:0.5 options:UIViewAnimationOptionTransitionCrossDissolve animations:NULL completion:^(BOOL finished) {

if (finished) {//交换完成

// 移除老的vc推出新的vc

[newvc didMoveToParentViewController:self];

[currentvc willMoveToParentViewController:nil];

[currentvc removeFromParentViewController];

self.currentvc = newvc;

}else{// 交换失败

// 移除newvc

self.currentvc = currentvc;

[newvc willMoveToParentViewController:nil];

[newvc removeFromParentViewController];

}

}];

[self.view bringSubviewToFront:_control];

}

简书不支持视频上传,所以效果和log可以下代码运行看下:这里

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,236评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,867评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,715评论 0 340
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,899评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,895评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,733评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,085评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,722评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,025评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,696评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,816评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,447评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,057评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,009评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,254评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,204评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,561评论 2 343

推荐阅读更多精彩内容