两个联动的TableView

有的软件有联动效果,两个tableview左右可以联动,上下也可以联动,这是怎么做到的呐。
先看效果图

![Simulator Screen Shot 2017年2月14日 上午11.06.36.png](http://upload-images.jianshu.io/upload_images/715050-76ff5988df6044e3.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

代码结构

屏幕快照 2017-02-14 上午11.14.40.png

头部是headView,分别加在两个tableview的头上面
左右两边分别是两个tableview,这是毫无疑问的,但是右侧的tableview要加在scrollview上,根据scrollview的偏移来改变。

@property(nonatomic,strong)UITableView *leftTbView;//左边的TableView
@property(nonatomic,strong)UITableView *rightTbView;//右边的TableView
@property(nonatomic,strong)UIScrollView *bottomScrollView;//底层ScrollView

有一点需要注意的就是右侧的tableview的坐标和底部scrollview的坐标,因为rightTbView可以藏到leftTbView下面,所以rightTbView的坐标是从0开始的,但是bottomScrollView 的坐标却是从leftTbView的右侧开始的

-(void)initRightTbView{
    _rightTbView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, (6*100+7), kScreenHeight-64) style:UITableViewStylePlain];
    _rightTbView.delegate = self;
    _rightTbView.dataSource = self;
    _rightTbView.showsVerticalScrollIndicator = NO;
    _rightTbView.backgroundColor = [UIColor clearColor];
    _rightTbView.separatorStyle = UITableViewCellSelectionStyleNone;
    _rightTbView.allowsSelection = NO;

    
    _bottomScrollView = [[UIScrollView alloc]init];
    _bottomScrollView.contentSize = CGSizeMake(_rightTbView.frame.size.width, 0);
    _bottomScrollView.backgroundColor = [UIColor whiteColor];
    _bottomScrollView.bounces = NO;
    _bottomScrollView.showsHorizontalScrollIndicator = NO;
    _bottomScrollView.backgroundColor = [UIColor clearColor];
    [_bottomScrollView addSubview:_rightTbView];
    [_mainView addSubview:_bottomScrollView];
    _bottomScrollView.frame = CGRectMake(102, 0,_mainView.frame.size.width , kScreenHeight);
}

制造假的数据源

 for (NSInteger i=0; i<80; i++) {
        GradeModel *model = [[GradeModel alloc] init];
        model.totalScore = [NSString stringWithFormat:@"%ld分",740-i*4];
        model.chineseScore = [NSString stringWithFormat:@"%ld分",142-i];
        model.mathScore = [NSString stringWithFormat:@"%ld分",150-i];
        model.englishScore = [NSString stringWithFormat:@"%ld分",148-i];
        model.comprehensiveScore = [NSString stringWithFormat:@"%ld分",300-i];
        [self.dataArr addObject:model];
    }

tableview的代理方法

 (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    if(tableView == _leftTbView){
        return 1;
    }else{
        return 1;
    }
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    if(tableView == _leftTbView){
        return _dataArr.count;
    }else{
        return _dataArr.count;
    }
}

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
    return 0.1;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return 36;
}

- (nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
    if(tableView == _leftTbView){
        LeftHeadView *tHView = [[LeftHeadView alloc]init];
        return tHView;
    }else{
        RightHeadView *tHView = [[RightHeadView alloc]init];
        return tHView;
    }
}

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
    if(tableView == _leftTbView){
        return kLabelHeight + kMenuLineWidth*2;
    }else{
        return kLabelHeight + kMenuLineWidth*2;
    }
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    if(tableView == _leftTbView){
        static NSString *strCell = @"LeftCell";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:strCell];
        if(!cell){
            cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:strCell];
        }
        cell.backgroundColor = HexRGB(0xEAEAEA);
        cell.textLabel.text = [NSString stringWithFormat:@"第%ld名",indexPath.row];
        return cell;
    }else{
        static NSString *strCell = @"RightCell";
        RightCell *cell = [tableView dequeueReusableCellWithIdentifier:strCell];
        if(!cell){
            cell = [[RightCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:strCell];
        }
        [cell configModel:self.dataArr[indexPath.row]];
        return cell;
    }
}


- (void)tableView:(UITableView *)tableView didHighlightRowAtIndexPath:(NSIndexPath *)indexPath{
    [_leftTbView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
    [_rightTbView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
}

联动的实现

直接上代码

#pragma mark - 两个tableView联动
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    if (scrollView == _leftTbView) {
        [self tableView:_rightTbView scrollFollowTheOther:_leftTbView];
    }else{
        [self tableView:_leftTbView scrollFollowTheOther:_rightTbView];
    }
}

- (void)tableView:(UITableView *)tableView scrollFollowTheOther:(UITableView *)other{
    CGFloat offsetY= other.contentOffset.y;
    CGPoint offset=tableView.contentOffset;
    offset.y=offsetY;
    tableView.contentOffset=offset;
}

代码传送门

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容