UIKit-UITableView详解


UITableView

一.UITableView

<p>tableView 是项目开发里经常用到的控件,刚开始使用时可能会觉得这玩意功能强大但实现起来复杂,不过用多了,就会觉得它功能强大而且简单。
<p>分类 tableView有两种风格,每次初始化时必须制定一种风格,默认是 Plain,而且创建成功后是不可更改的,所以希望通过一个tableView实例在两种风格之间互相切换的少年实在是想多了。
UITableViewStylePlain:section 的headers和footers是漂浮在内容上层的,而且这种风格的列表可以在右侧有一个索引条,通过索引直接跳转到对应的section。
UITableViewStyleGrouped:有默认的background color和background view ,iOS7之前每个分组都有圆角效果感觉挺叼,不过iOS7扁平化之后跟UITableViewStylePlain也没啥区别了,而且不能使用索引功能。
<p>创建 tableView必须有一个协议的实现类和数据源的实现类。

    // 1.初始化plain风格的table,plain可以使用索引功能
    self.plainTableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 80, self.view.bounds.size.width, self.view.bounds.size.height - 80)];
    self.plainTableView.dataSource = self;//  设置数据源
    self.plainTableView.delegate = self;//  设置代理

    //2.实现数据源方法
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
      return 10;
    }

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
        static NSString *identifier = @"Cell";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
        if (!cell) {
            cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
        }
        return cell;
    }

<p>属性 tableView通过属性设置各项数值

    self.plainTableView.tag = 10001;
    
    self.plainTableView.rowHeight = 92;//   单元格高度,优先级比                               -tableView:heightForRowAtIndexPath:低
    self.plainTableView.sectionHeaderHeight = 40;
    self.plainTableView.sectionFooterHeight = 40;
    
    self.plainTableView.estimatedRowHeight = 92;//  估算单元格高度,(iOS7)
    self.plainTableView.estimatedSectionHeaderHeight = 40;//  估算section头部视图高度,(iOS7)
    self.plainTableView.estimatedSectionFooterHeight = 40;//  估算section尾部视图高度,(iOS7)
    
    self.plainTableView.separatorInset = UIEdgeInsetsMake(0, 0, 0, 20);//   分割线间隙,(iOS7)
    
    self.plainTableView.backgroundColor = [UIColor whiteColor];//  背景色
    self.plainTableView.backgroundView = nil;//  背景视图,想要显示背景视图必须先把单元格的背景色设为clearColor

<p>编辑 tableView由单元格组成,每个单元格都具有选中属性,实现了tableView的单选和多选,不过tableView存在编辑模式和普通模式,所以选择也分为编辑模式下和普通模式下的单选和多选,默认只能在普通模式下单选。除此之外单元格的选中也分为多个样式:

  • UITableViewCellSelectionStyleNone
  • UITableViewCellSelectionStyleBlue
  • UITableViewCellSelectionStyleGray
  • UITableViewCellSelectionStyleDefault (iOS7)
    self.plainTableView.allowsSelection = YES;//  默认是YES,决定单元格在非编辑模式下是否可单选
    
    self.plainTableView.allowsSelectionDuringEditing = NO;//  默认是NO,决定单元格在编辑状态下是否可单选

    self.plainTableView.allowsMultipleSelection = NO;//  默认是NO,决定单元格在非编辑模式下是否可多选,不被allowsSelection影响
    
    self.plainTableView.allowsMultipleSelectionDuringEditing = NO;//  默认是NO,决定单元格仔编辑状态下是否可多选,当该值被设为YES时,列表的编辑模式将没有删除、添加

<p>信息 tableView有许多方法获取自身的各项属性

//  获取number
    NSInteger numOfSection = [self.plainTableView numberOfSections];
    
    NSInteger numOfRowInSection0 = [self.plainTableView numberOfRowsInSection:0];
    
    NSLog(@"%d%d",numOfSection,numOfRowInSection0);
    
    //  获取Frame
    CGRect sectionRect = [self.plainTableView rectForSection:0];//  包括section头部视图和尾部视图的
    
    CGRect headerRect = [self.plainTableView rectForHeaderInSection:0];
    
    CGRect footerRect = [self.plainTableView rectForFooterInSection:0];
    
    CGRect cellRect = [self.plainTableView rectForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
    
    NSLog(@"%f%f%f%f",sectionRect.size.height,headerRect.size.height,footerRect.size.height,cellRect.size.height);
    
    //  获取indexPath
    NSIndexPath *indexPath0 = [self.plainTableView indexPathForRowAtPoint:CGPointMake(10, 200)];//  当点不在列表任意单元格中的时候返回nil
    
    NSIndexPath *indexPath1 = [self.plainTableView indexPathForCell:[self.plainTableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:6 inSection:0]]];//   当单元格不可见的时候返回nil
    
    NSArray *indexPathArr0 = [self.plainTableView indexPathsForRowsInRect:CGRectMake(0, 0, 200, 0)];//  当Rect无效时返回nil
    
    NSArray *visibleArr = [self.plainTableView indexPathsForVisibleRows];
    
    NSArray *selectedArr = [self.plainTableView indexPathsForSelectedRows];
    
    //  获取Cell
    UITableViewCell *cell = [self.plainTableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:10 inSection:0]];//  当单元格不可见活着indexPath超出范围时返回nil
    
    NSArray *cellArr = [self.plainTableView visibleCells];
    
    //  获取UITableViewHeaderFooterView
    UITableViewHeaderFooterView *headerView = [self.plainTableView headerViewForSection:0];//   (iOS6)
    
    UITableViewHeaderFooterView *footerView = [self.plainTableView footerViewForSection:0];//   (iOS6)

<p>外观 索引样式、分割线样式、单元格样式、列表头部尾部等等

    self.plainTableView.sectionIndexMinimumDisplayRowCount = 1;// 当指定section的行数达到这个值的时候,在右侧显示该section的索引列表
    self.plainTableView.sectionIndexColor = [UIColor blackColor];// section索引的文字颜色,(iOS6)
    self.plainTableView.sectionIndexBackgroundColor = [UIColor grayColor];// 索引未被触碰时的背景颜色,(iOS7)
    self.plainTableView.sectionIndexTrackingBackgroundColor = [UIColor redColor];// 索引被触碰时的背景颜色,(iOS6)
    
    /* UITableViewCellSeparatorStyle
     * UITableViewCellSeparatorStyleNone,
     * UITableViewCellSeparatorStyleSingleLine,
     * UITableViewCellSeparatorStyleSingleLineEtched  只有group的table可以使用该样式
     */
    self.plainTableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;// 现在一般都是设为UITableViewCellSeparatorStyleNone然后自定义
    self.plainTableView.separatorColor = [UIColor purpleColor];// 默认是gray
    self.plainTableView.separatorEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];// 列表分隔的样式效果,(iOS8)need to do more
    
    /*
     * 启用与iOS6,客户端可以为每一个cell注册一个nib或class
     * 如果全部重用identifiers都注册了,使用新方法-dequeueReusableCellWithIdentifier:forIndexPath:来保证一个单元格实例返回
     * 当从dequeue方法中返回实例的时候它们会重置正确的大小
     */
    [self.plainTableView registerNib:[UINib nibWithNibName:@"customCell"  bundle:[NSBundle mainBundle]] forCellReuseIdentifier:@"customCell"];//  注册自定义单元格,注册后在单元格重制方法里才能只通过Identifier就找到对应的单元格,(iOS5)
    
    //- (void)registerClass:(Class)cellClass forCellReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(6_0);
    
    //- (void)registerNib:(UINib *)nib forHeaderFooterViewReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(6_0);
    
    //- (void)registerClass:(Class)aClass forHeaderFooterViewReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(6_0);

<p>方法

    //1.刷新数据
    - (void)reloadAction {
    [self.plainTableView reloadData];
}
    //2.刷新索引
    - (void)reloadIndexTitleAction {
    [self.plainTableView reloadSectionIndexTitles];
}
    //3.强制定位
    - (void)scrollToIndexPath {
    /* UITableViewScrollPosition的枚举
     * UITableViewScrollPositionNone
     * UITableViewScrollPositionTop
     * UITableViewScrollPositionMiddle
     * UITableViewScrollPositionBottom
     */
    [self.plainTableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:5 inSection:0] atScrollPosition:UITableViewScrollPositionMiddle animated:YES];
}
    //4.定位选中行
    - (void)scrollToNearestSelectedRow {
    [self.plainTableView scrollToNearestSelectedRowAtScrollPosition:UITableViewScrollPositionTop animated:YES];// 定位到indexPath最小的选中单元格的位置,多选一样有效
}
    //5.模式变换
    - (void)edit:(UIButton *)sender {
    sender.selected = !sender.selected;
    [self.plainTableView setEditing:sender.selected animated:YES];
}
    //6.选中行并定位   
    - (void)getPlainTableViewSelection {
    NSIndexPath *indexPath = [self.plainTableView indexPathForSelectedRow];// 当有多个选中是,返回indexPath最小的那个
    
    NSArray *indexPathArr = [self.plainTableView indexPathsForSelectedRows];// (iOS5)
    
    [self.plainTableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionMiddle];// 选中
    
    [self.plainTableView deselectRowAtIndexPath:indexPath animated:YES];// 取消选中
} 

二.UITableView的四大功能

<p>添加、删除

/* 实现添加删除功能
 * 1:实现-tableView:canEditRowAtIndexPath: ,不实现时全部cell默认可编辑,该方法决定是否可编辑
 * 2.实现-tableView:commitEditingStyle:forRowAtIndexPath:,必须实现,该方法自定义添加删除功能
 * 3.实现-tableView:editingStyleForRowAtIndexPath:,不实现时为删除样式,该方法决定编辑样式
 * 4.可以实现-tableView:willBeginEditingRowAtIndexPath:
            -tableView:didEndEditingRowAtIndexPath:
     两个方法监听编辑动作并作相应自定义
 */
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
    // 可以不实现该方法,默认全部单元格都是可编辑,也可在此处控制单元格是否可编辑
    return YES;
}

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    // 在这里定义添加删除功能,当添加或删除按钮被点击时,datasource必须提交更改,当edit动作使用UITableViewRowAction时,处理动作会被取代
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        [tableData removeObjectAtIndex:indexPath.row];
        [self.plainTableView deleteRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationFade];
    }
    else if (editingStyle == UITableViewCellEditingStyleInsert) {
        
    }
}

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
    /*
     * UITableViewCellEditingStyleNone
     * UITableViewCellEditingStyleDelete
     * UITableViewCellEditingStyleInsert
     */
    return UITableViewCellEditingStyleNone;
}

<p>排序

/* 移动功能
 * 1.实现-tableView:canMoveRowAtIndexPath:,不实现时全部单元格默认可移动
 * 2.实现-tableView:moveRowAtIndexPath:toIndexPath:,必须实现,在该方法中定义移动功能,只有实现了该方法,编辑模式下才显示移动图标
 * 3.可以实现
        -tableView:targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath
   自定义某些特定功能,不过尽量还是别实现,因为这个方法cell在移动过程中每经过一个cell就会调用一次,调用地多会影响性能
 * 4.可以实现
        -tableView:willBeginEditingRowAtIndexPath:
        -tableView:didEndEditingRowAtIndexPath:
   两个方法监听编辑动作并作相应自定义
 */
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
    // 允许某个指定行显示复制视图,默认情况下只有datasource实现了-tableView:moveRowAtIndexPath:toIndexPath:才显示
    return YES;
}

- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath {
    if (sourceIndexPath != destinationIndexPath) {
        id object = [tableData objectAtIndex:sourceIndexPath.row];
        [tableData removeObjectAtIndex:sourceIndexPath.row];
        if (destinationIndexPath.row > [tableData count]) {
            [tableData addObject:object];
        }
        else {
            [tableData insertObject:object atIndex:destinationIndexPath.row];
        }
    }
}

<p>索引

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
    // 设置section标题的列表来显示在section索引视图上
    return @[@"a",@"a",@"a",@"a",@"a",@"a"];
}

- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
    // 告诉列表哪个section对应哪个索引
    return index;
}

<p>复制

#pragma mark  - 复制黏贴功能
// 三个方法必须都实现,缺一不可
- (BOOL)tableView:(UITableView *)tableView shouldShowMenuForRowAtIndexPath:(NSIndexPath *)indexPath {
    // 允许长按显示菜单,也可以作为cell长按手势回调
    NSLog(@"---------长按");
    return NO;
}

- (BOOL)tableView:(UITableView *)tableView canPerformAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender {
    // 允许每一个Action
    return  YES;
}

- (void)tableView:(UITableView *)tableView performAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender {
    // 对一个给定的行告诉代表执行复制或粘贴操作内容
    if (action==@selector(copy:)) {//如果操作为复制
        UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
        UIPasteboard *pasteBoard = [UIPasteboard generalPasteboard];//黏贴板
        [pasteBoard setString:cell.textLabel.text];
        NSLog(@"%@",pasteBoard.string);//获得剪贴板的内容
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,776评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,527评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,361评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,430评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,511评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,544评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,561评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,315评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,763评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,070评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,235评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,911评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,554评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,173评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,424评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,106评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,103评论 2 352

推荐阅读更多精彩内容

  • 概述在iOS开发中UITableView可以说是使用最广泛的控件,我们平时使用的软件中到处都可以看到它的影子,类似...
    liudhkk阅读 9,025评论 3 38
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,082评论 4 62
  • 无论球队是赢得胜利凯旋而归还是输掉比赛垂头丧气,俄城的球迷,无论男女老少总会在凌晨自发前往机场等候客场疲惫归来的主...
    Kusok阅读 109评论 0 0
  • 小时候,管理发叫剃头。 那时也不知道什么理发师,全由本家的大爷给剃头。也没什么头型,就是拿剃头推子,推一个光头。 ...
    怀双阅读 451评论 6 13
  • 这四年最美好的回忆,是遇见了最想照顾一生的你;这四年最长的叹息,是相遇在我还没有能力的年纪。 明明想听你的消...
    听水榭主人阅读 150评论 0 0