tabbar 是根视图
场景:从targetVC跳转用户中心,场景介绍完成。
需求:点击"首页",出现的是targetVC,需求是点击首页需要回到MainVC
问题:这个如何实现?
//获取tabbar控制器
UITabBarController *tabbarVC = (UITabBarController *)[UIApplication sharedApplication].keyWindow.rootViewController;
tabbarVC.selectedIndex = 1;
[self.navigationController popToRootViewControllerAnimated:YES];
tabbar.selectedIndex = 1;