tabBar选中 刷新某页面
Posted justqi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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选中 刷新某页面的主要内容,如果未能解决你的问题,请参考以下文章
JS实现选中某行上下移动,每次会刷新一下来进行前后交互,刷新之后tr不能保持选中状态