iOS相关记录本

iOS 点击tabbar的一个item,直接push新页面,而不

2019-04-13  本文已影响0人  iOS_July

需求是这样:
我底部有三个tabbar的item,假如我现在停留在第一个item对应页面上,此时点击中间的item,实现直接push到一个页面,返回后,页面还是第一个item对应的页面,第一个item依然是选中状态。

第一步,代理
#pragma mark - 实现中间item点击直接push的需求
- (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController
{
    
    if ([tabBarController.tabBar.selectedItem.title isEqualToString:@"消息中心"]) {
        [[NSNotificationCenter defaultCenter] postNotificationName:[NSString stringWithFormat:@"%@%ld",kNotificationMessagePush,tabTag] object:nil];
//        [[NSNotificationCenter defaultCenter] postNotificationName:kNotificationMessagePush object:nil];
        return NO;
        
    }
    return YES;
}

- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item {
    //这里为什么要通过item名字来判断第几个tab呢?
    //因为发现self.selectIndex不准确,索性手动来判断。
    //解释下为什么需要知道当前是第几个item?
    //因为SB创建的tabbarController没有navgation,所以无法直接push跳转。
    //present虽然能跳转,但是没了navgation,在present的页面万一push就又麻烦了。所以不能直接在tabbarController里面push;
    //另外,为了保证发送通知针对的是你当前所在的界面,而不是每次点击发送的通知和接收的通知都一样,所以,加上index后缀,使得通知一一对应。

    
    if ([item.title isEqualToString:@"工作台"]) {
        tabTag = 0;
    }
    if ([item.title isEqualToString:@"个人中心"]) {
        tabTag = 2;
    }
    if ([item.title isEqualToString:@"消息中心"]) {
        return;
    }
}
第二步,实现通知
#pragma mark - 通知相关
- (void)notificationCenterConfig{
    
//    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(justPush:) name:kNotificationMessagePush object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(justPush:) name:[NSString stringWithFormat:@"%@2",kNotificationMessagePush] object:nil];
}

- (void)justPush:(NSNotification *) notification {
    //处理消息
    
    UIViewController *c = [[UIViewController alloc]init];
    c.view.backgroundColor = [UIColor purpleColor];
    [self.navigationController pushViewController:c animated:YES];
    
}
- (void)dealloc {
    //单条移除观察者
    //[[NSNotificationCenter defaultCenter] removeObserver:self name:[NSString stringWithFormat:@"%@2",kNotificationMessagePush] object:nil];
    //移除所有观察者
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}
第三步,注意⚠️!
上一篇下一篇

猜你喜欢

热点阅读