首页 > 代码库 > tabBar选中 刷新某页面
tabBar选中 刷新某页面
AppDelegate.m文件 @interface AppDelegate ()<UITabBarControllerDelegate> //监听tabar点击事件,(DXDTabat.m代替之) #pragma mark - <UITabBarControllerDelegate> - (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController { // 发出一个通知 [ [NSNotificationCenter defaultCenter] postNotificationName:@"DXDTabBarDidSelectNotification" object:nil userInfo:nil]; } //在需要刷新的ViewController.m文件 // 监听tabbar点击的通知 - (void)viewDidLoad { [DXDNoteCenter addObserver:self selector:@selector(tabBarSelect) name:DXDTabBarDidSelectNotification object:nil]; } - (void)tabBarSelect { // 如果是连续选中2次, 直接刷新 if (self.lastSelectedIndex == self.tabBarController.selectedIndex // && self.tabBarController.selectedViewController == self.navigationController && [self isShowingOnKeyWindow]) { [self.tableView.header beginRefreshing]; } // 记录这一次选中的索引 self.lastSelectedIndex = self.tabBarController.selectedIndex; } - (BOOL)isShowingOnKeyWindow { // 主窗口 UIWindow *keyWindow = [UIApplication sharedApplication].keyWindow; // 以主窗口左上角为坐标原点, 计算self的矩形框 CGRect newFrame = [keyWindow convertRect:self.frame fromView:self.superview]; CGRect winBounds = keyWindow.bounds; // 主窗口的bounds 和 self的矩形框 是否有重叠 BOOL intersects = CGRectIntersectsRect(newFrame, winBounds); return !self.isHidden && self.alpha > 0.01 && self.window == keyWindow && intersects; }
tabBar选中 刷新某页面
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。