UITableView的联动效果 | 一

作者: JoyceZhao | 来源:发表于2016-11-23 10:08 被阅读338次

    UITableView的联动效果在APP中最为常见,下来小编为大家简单介绍一下纯代码实现的方式。

    联动效果的实现主要分为两大部分

    点击左侧的cell,右侧的tableView滚动到对应的位置

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
    

    滚动右侧的tableView,左侧的tableView滚动到对应的位置

    - (void)scrollViewDidScroll:(UIScrollView *)scrollView
    

    联动效果的运行效果图

    运行结果图.gif

    具体的实现代码

    //
    //  ViewController.m
    //  TwoTableViewDemo
    //
    //  Created by Joyce on 16/11/22.
    //  Copyright © 2016年 Joyce. All rights reserved.
    //
    
    #import "ViewController.h"
    
    #define leftTableWidth [UIScreen mainScreen].bounds.size.width * 0.3
    #define rightTableWidth [UIScreen mainScreen].bounds.size.width * 0.7
    #define ScreenWidth [UIScreen mainScreen].bounds.size.width
    #define ScreenHeight [UIScreen mainScreen].bounds.size.height
    
    #define leftCellIdentifier @"leftCellIdentifier"
    #define rightCellIdentifier @"rightCellIdentifier"
    
    @interface ViewController () <UITableViewDataSource, UITableViewDelegate>
    
    /** 左边的tableView */
    @property(nonatomic, weak)UITableView *leftTableView;
    /** 右边的tableView */
    @property(nonatomic, weak)UITableView *rightTableView;
    /** 左边的tableView显示的内容 */
    @property(nonatomic, strong)NSArray *_leftArray;
    /** 右边的tableView显示的内容 */
    @property(nonatomic, strong)NSArray *_rightArray;
    
    @end
    
    @implementation ViewController {
        
        /** 左边的tableView显示的内容 */
        NSArray *_leftArray;
        /** 右边的tableView显示的内容 */
        NSArray *_rightArray;
    }
    
    - (void)viewDidLoad {
        [super viewDidLoad];
        
        [self.view addSubview:self.leftTableView];
        [self.view addSubview:self.rightTableView];
        _leftArray = [[NSArray alloc] initWithObjects:@"第一类",@"第二类",@"第三类",@"第四类",@"第五类",@"第六类",@"第七类",@"第八类", nil];
        
        _rightArray = [[NSArray alloc] initWithObjects:@"一",@"二",@"三",@"四",@"五",@"六", nil];
    }
    
    
    
    #pragma mark - 懒加载 tableView -
    // MARK: - 左边的 tableView
    - (UITableView *)leftTableView {
        
        if (!_leftTableView) {
            
            UITableView *tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, leftTableWidth, ScreenHeight)];
            
            [self.view addSubview:tableView];
            
            _leftTableView = tableView;
            
            tableView.dataSource = self;
            tableView.delegate = self;
            
            [tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:leftCellIdentifier];
            tableView.backgroundColor = [UIColor redColor];
            
        }
        return _leftTableView;
    }
    
    // MARK: - 右边的 tableView
    - (UITableView *)rightTableView {
        
        if (!_rightTableView) {
            
            UITableView *tableView = [[UITableView alloc] initWithFrame:CGRectMake(leftTableWidth, 0, rightTableWidth, ScreenHeight)];
            
            [self.view addSubview:tableView];
            
            _rightTableView = tableView;
            
            tableView.dataSource = self;
            tableView.delegate = self;
            
            [tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:rightCellIdentifier];
            tableView.backgroundColor = [UIColor cyanColor];
            
        }
        return _rightTableView;
    }
    
    #pragma mark ------------------
    #pragma mark - 数据源方法
    -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    
        if (tableView == self.leftTableView) {
    //        return _leftArray.count;
            return 40;
        }
        return _rightArray.count;
    }
    
    -(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    
        if (tableView == self.leftTableView) {
            return 1;
        }
    //    return _rightArray.count;
        return 40;
    }
    
    -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    
        UITableViewCell *cell;
        
        // 左边的cell
        if (tableView == self.leftTableView) {
            cell = [tableView dequeueReusableCellWithIdentifier:leftCellIdentifier forIndexPath:indexPath];
            cell.textLabel.text = [NSString stringWithFormat:@"%ld", indexPath.row];
    //        cell.textLabel.text = [_leftArray objectAtIndex:indexPath.row];
        } else {
        
            // 右边的cell
            cell = [tableView dequeueReusableCellWithIdentifier:rightCellIdentifier forIndexPath:indexPath];
            cell.textLabel.text = [NSString stringWithFormat:@"第%ld组-第%ld行", indexPath.section, indexPath.row];
    //        cell.textLabel.text = [_rightArray objectAtIndex:indexPath.row];
        }
        return cell;
    }
    
    -(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
    
        if (tableView == self.rightTableView) {
            return [NSString stringWithFormat:@"第%ld组", section];
    //        return [_leftArray objectAtIndex:section];
        }
        return nil;
    }
    
    #pragma mark ------------------
    #pragma mark - 代理方法
    - (void)scrollViewDidScroll:(UIScrollView *)scrollView {
        
        // 如果是 左侧的 tableView 直接return
        if (scrollView == self.leftTableView) return;
        
        // 取出显示在 视图 且最靠上 的 cell 的 indexPath
        NSIndexPath *topHeaderViewIndexpath = [[self.rightTableView indexPathsForVisibleRows] firstObject];
        
        // 左侧 talbelView 移动的 indexPath
        NSIndexPath *moveToIndexpath = [NSIndexPath indexPathForRow:topHeaderViewIndexpath.section inSection:0];
        
        // 移动 左侧 tableView 到 指定 indexPath 居中显示
        [self.leftTableView selectRowAtIndexPath:moveToIndexpath animated:YES scrollPosition:UITableViewScrollPositionMiddle];
        
    }
    
    //MARK: - 点击 cell 的代理方法
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
        
        // 选中 左侧 的 tableView
        if (tableView == self.leftTableView) {
            
            NSIndexPath *moveToIndexPath = [NSIndexPath indexPathForRow:0 inSection:indexPath.row];
            
            // 将右侧 tableView 移动到指定位置
            [self.rightTableView selectRowAtIndexPath:moveToIndexPath animated:YES scrollPosition:UITableViewScrollPositionTop];
            
            // 取消选中效果
            [self.rightTableView deselectRowAtIndexPath:moveToIndexPath animated:YES];
        }
    }
    
    @end
    

    结束语
    功能还不是很完善,大家有兴趣可以亲自动手实现一下,有storyboard方式实现的欢迎和大家分享。

    相关文章

      网友评论

        本文标题:UITableView的联动效果 | 一

        本文链接:https://www.haomeiwen.com/subject/srompttx.html