UITableView的聯(lián)動(dòng)效果 | 一

UITableView的聯(lián)動(dòng)效果在A(yíng)PP中最為常見(jiàn),下來(lái)小編為大家簡(jiǎn)單介紹一下純代碼實(shí)現(xiàn)的方式严肪。

聯(lián)動(dòng)效果的實(shí)現(xiàn)主要分為兩大部分

點(diǎn)擊左側(cè)的cell,右側(cè)的tableView滾動(dòng)到對(duì)應(yīng)的位置

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

滾動(dòng)右側(cè)的tableView,左側(cè)的tableView滾動(dòng)到對(duì)應(yīng)的位置

- (void)scrollViewDidScroll:(UIScrollView *)scrollView

聯(lián)動(dòng)效果的運(yùn)行效果圖

運(yùn)行結(jié)果圖.gif

具體的實(shí)現(xiàn)代碼

//
//  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顯示的內(nèi)容 */
@property(nonatomic, strong)NSArray *_leftArray;
/** 右邊的tableView顯示的內(nèi)容 */
@property(nonatomic, strong)NSArray *_rightArray;

@end

@implementation ViewController {
    
    /** 左邊的tableView顯示的內(nèi)容 */
    NSArray *_leftArray;
    /** 右邊的tableView顯示的內(nèi)容 */
    NSArray *_rightArray;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    
    [self.view addSubview:self.leftTableView];
    [self.view addSubview:self.rightTableView];
    _leftArray = [[NSArray alloc] initWithObjects:@"第一類(lèi)",@"第二類(lèi)",@"第三類(lèi)",@"第四類(lèi)",@"第五類(lèi)",@"第六類(lèi)",@"第七類(lèi)",@"第八類(lèi)", 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 - 數(shù)據(jù)源方法
-(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 {
    
    // 如果是 左側(cè)的 tableView 直接return
    if (scrollView == self.leftTableView) return;
    
    // 取出顯示在 視圖 且最靠上 的 cell 的 indexPath
    NSIndexPath *topHeaderViewIndexpath = [[self.rightTableView indexPathsForVisibleRows] firstObject];
    
    // 左側(cè) talbelView 移動(dòng)的 indexPath
    NSIndexPath *moveToIndexpath = [NSIndexPath indexPathForRow:topHeaderViewIndexpath.section inSection:0];
    
    // 移動(dòng) 左側(cè) tableView 到 指定 indexPath 居中顯示
    [self.leftTableView selectRowAtIndexPath:moveToIndexpath animated:YES scrollPosition:UITableViewScrollPositionMiddle];
    
}

//MARK: - 點(diǎn)擊 cell 的代理方法
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    
    // 選中 左側(cè) 的 tableView
    if (tableView == self.leftTableView) {
        
        NSIndexPath *moveToIndexPath = [NSIndexPath indexPathForRow:0 inSection:indexPath.row];
        
        // 將右側(cè) tableView 移動(dòng)到指定位置
        [self.rightTableView selectRowAtIndexPath:moveToIndexPath animated:YES scrollPosition:UITableViewScrollPositionTop];
        
        // 取消選中效果
        [self.rightTableView deselectRowAtIndexPath:moveToIndexPath animated:YES];
    }
}

@end

結(jié)束語(yǔ)
功能還不是很完善匪补,大家有興趣可以親自動(dòng)手實(shí)現(xiàn)一下佑钾,有storyboard方式實(shí)現(xiàn)的歡迎和大家分享西疤。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市休溶,隨后出現(xiàn)的幾起案子代赁,更是在濱河造成了極大的恐慌,老刑警劉巖兽掰,帶你破解...
    沈念sama閱讀 211,194評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件芭碍,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡孽尽,警方通過(guò)查閱死者的電腦和手機(jī)窖壕,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)杉女,“玉大人瞻讽,你說(shuō)我怎么就攤上這事⊙妫” “怎么了速勇?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,780評(píng)論 0 346
  • 文/不壞的土叔 我叫張陵,是天一觀(guān)的道長(zhǎng)坎拐。 經(jīng)常有香客問(wèn)我烦磁,道長(zhǎng)养匈,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,388評(píng)論 1 283
  • 正文 為了忘掉前任都伪,我火速辦了婚禮呕乎,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘陨晶。我一直安慰自己猬仁,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,430評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布珍逸。 她就那樣靜靜地躺著逐虚,像睡著了一般。 火紅的嫁衣襯著肌膚如雪谆膳。 梳的紋絲不亂的頭發(fā)上叭爱,一...
    開(kāi)封第一講書(shū)人閱讀 49,764評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音漱病,去河邊找鬼买雾。 笑死,一個(gè)胖子當(dāng)著我的面吹牛杨帽,可吹牛的內(nèi)容都是我干的漓穿。 我是一名探鬼主播,決...
    沈念sama閱讀 38,907評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼注盈,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼晃危!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起老客,我...
    開(kāi)封第一講書(shū)人閱讀 37,679評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤僚饭,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后胧砰,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體鳍鸵,經(jīng)...
    沈念sama閱讀 44,122評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,459評(píng)論 2 325
  • 正文 我和宋清朗相戀三年尉间,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了偿乖。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,605評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡哲嘲,死狀恐怖贪薪,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情眠副,我是刑警寧澤古掏,帶...
    沈念sama閱讀 34,270評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站侦啸,受9級(jí)特大地震影響槽唾,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜光涂,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,867評(píng)論 3 312
  • 文/蒙蒙 一庞萍、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧忘闻,春花似錦钝计、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,734評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至炼吴,卻和暖如春本鸣,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背硅蹦。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,961評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工荣德, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人童芹。 一個(gè)月前我還...
    沈念sama閱讀 46,297評(píng)論 2 360
  • 正文 我出身青樓涮瞻,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親假褪。 傳聞我的和親對(duì)象是個(gè)殘疾皇子署咽,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,472評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容

  • 概述在iOS開(kāi)發(fā)中UITableView可以說(shuō)是使用最廣泛的控件,我們平時(shí)使用的軟件中到處都可以看到它的影子生音,類(lèi)似...
    liudhkk閱讀 9,006評(píng)論 3 38
  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫(kù)宁否、插件、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,059評(píng)論 4 62
  • 郭相麟 別問(wèn)我是誰(shuí)久锥? 我一臉驚詫 看著這個(gè)世界 這個(gè)世界到底是什么家淤? 讓我摸摸耳朵 聽(tīng)聽(tīng)世界上最美好的聲音 這個(gè)世...
    郭相麟閱讀 149評(píng)論 0 0
  • 潔白的信鴿與我的手機(jī)相撞 勞碌奔波的鴿子呵,我想起春天 你翱翔的翅膀和搏擊寒冬的頑強(qiáng) 更想起你瑟由,穿過(guò)烏云 把母親及...
    羅海伢子閱讀 240評(píng)論 0 1