iOS代码控制tabbarController切换子视图

开发中最常见的界面设计就是:一个tabbarController,管理几个navigationController,各个navigationController管理下,又有很多的viewController。我们可能会遇到这样的需求:在一个navigationController的第二层、第三次...控制器下,在执行某个操作时,需要将视图推到navigationController的第一层,并控制tabbarController切换,显示其他的子控制器(navigationController);
首先我们知道:
1、使用navigationController回到第一层的方法:

[self.navigationController popToRootViewControllerAnimated:YES];

2、使用tabbarController切换子控制器的方法:

self.navigationController.tabBarController.selectedIndex = 0;

问题在于:我如何在pop到导航控制器的第一层后,让tabbarController切换需要显示的子控制器呢?
我的做法是:使用block回调
在讲述我的做法之前,先介绍两个类:MineViewController(我的类)与MineMessagesViewController(消息类)
1、他们同属一个navigationController的控制下;
2、MineViewController(我的类)是第一层;
3、MineMessagesViewController(消息类)是里面的某一层(第二层);
我需要在MineMessagesViewController(消息类)的点击事件中,让navigationController回到第一层,tabbarController展示其他navigationController
做法:
在MineMessagesViewController(消息类)中声明一个block;

#import "BaseViewController.h"

typedef void(^MineMessageBlock)();

@interface MineMessagesViewController : BaseViewController

@property (nonatomic,copy)MineMessageBlock gotoSeeBlock;

@end

在MineMessagesViewController(消息类)的点击事件中调用这个block:

self.gotoSeeBlock();
[self.navigationController popViewControllerAnimated:YES];

在MineViewController(我的类)中,我们收到了回调,然后控制tabbarController切换子视图控制器

MineMessagesViewController *vc = [[MineMessagesViewController alloc]init];
//此处为重点
vc.gotoSeeBlock = ^{
  self.navigationController.tabBarController.selectedIndex = 0;
};
[self.navigationController pushViewController:vc animated:YES];

网上有个更简单的方法:

__weak typeof (self)weakSelf = self;
weakSelf.navigationController.tabBarController.selectedIndex = 0;
[weakSelf.navigationController popViewControllerAnimated:NO];

亲测有效。
结合两种方法来看,貌似我的做法有些多余,毕竟无论是navigationController的哪个子控制,都能通过“点语法”找到其本身,然后再通过“点语法”找到其tabbarController;唯一需要注意的就是循环应用的问题,一个弱引用就解决了。所以我的做法有些“蛇足”。
测试效果:两者没有明显区别,且都存在一个问题:没有了popViewController的动画;

那么如何进一步优化呢?
我有个想法:使用协议,让MineMessagesViewController修改MineViewController的一个属性的值,在MineViewController 的viewDidAppear方法中根据这个属性值,决定是否控制tabbarController切换子视图,在MineViewController的viewWillDisappear方法中重置这个属性的值。

你可能感兴趣的:(iOS代码控制tabbarController切换子视图)