2018-06-12

UITableView与UICollecView的使用

【本文目录】

[TOC]

推荐阅读及本文内主要来源

iOS开发系列--UITableView全面解析

UICollectionView及其新功能drag and drop

在UIScrollView、UICollectionView和UITableView中添加UIRefreshControl实现下拉刷新

请直接看原文比较好哈哈哈哈。

本文基本上是拙劣地把几篇内容重新以自己的流程整理了思绪,以备后面使用。。。

1.UITableView


1.1UITableView的使用

UITableview常用来实现有大量相同格式信息的视图,如我们常见的设置界面,电话通讯录界面,好友列表,微博界面就是通过UITableView来实现。示意如图:


设置界面.png

原图地址(https://images0.cnblogs.com/blog/62046/201408/232318440491185.png)

好友界面.png

原图地址(https://images0.cnblogs.com/blog/62046/201408/232318465964629.png)

UITableView是UIScrollView的子类,它允许我们进行纵向滚动,UITableViewCell对象构建了UITableView列表中的一行元素,UITableView使用这些cell对象进行绘制,UITableView中可以包含多组(section)的cell,每组可以有不同的cell数,如设置界面所示,就是多个section;微信就是一个section。

我们使用viewController操作UITableView时,需要实现下面的协议

<UITableViewdelegate,UITableViewDataSource>

MVC模式在UITableView视图中得到了充分体现,viewController通过实现UITableViewDataSource协议进行model的访问,如获取section数,获取给定section的cell数等等,model中定义了cell的相关数据,该协议有两个@required方法

@protocol UITableViewDataSource<NSObject>

@required

//将tableview的给定组(Section)的行(cell)数从DataSource中读取返回
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;

//访问DataSource中indexPath的cell数据来创建并返回一个cell
- (UITableViewCell *)tableView:(UITableView *)tableView 
    cellForRowAtIndexPath:(NSIndexPath *)indexPath;

@optional

我们在VC中创建示例代码如下

#import "ViewController.h"

@interface ViewController ()
@property (strong,nonatomic) UITableView * tab;
@property (strong,nonatomic) NSMutableArray * arrySource;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    //创建UITableView,设置委托及DataSource
    _tab = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStylePlain];
    _tab.dataSource = self;
    _tab.delegate = self;
    [self.view addSubview:_tab];
    
    //修改DataSource内容
    _arrySource = [[NSMutableArray alloc] init];
    for(NSUInteger i = 0;i < 3;i++){
        NSMutableArray * cellCount = [[NSMutableArray alloc] init];
        for(NSUInteger j = 0;j < 4;j++)
        {
            NSString * str = [[NSString alloc]initWithFormat:@"%ld组,%ld行",i,j];
            [cellCount addObject:str];
        }
        [_arrySource addObject: cellCount];
    }
}

//section的cell数
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [[_arrySource objectAtIndex:section] count];
}

//optional,返回tableView的section数,没有实现则为1
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return [_arrySource count];
}

//创建单元格
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString * celStr = @"cell";
    //尝试获取可以复用的单元格
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:celStr];
    if(cell == nil)
    {
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:celStr];
        
    }
    NSString * cellTextLable = [[_arrySource objectAtIndex: indexPath.section] objectAtIndex:indexPath.row];
    cell.textLabel.text = cellTextLable;
    return cell;
}


@end

即可显示出一个三组四行元素的table view,如下图所示,实现协议中其他optional方法可以对tableview进行更多操作,详情请见UIKit的documentation,其中的dequeueReusableCellWithIdentifier是处于性能考虑,在滚动时新出现的cell尝试复用不会显示的cell来节省内存,提高性能。

Tabview示例

UITableViewDelegate

UITableViewDataSource

1.2.UITableView的UITableViewCell及相关属性

UITableViewCell作为UITableView的显示内容,其主要有一个UIView控件(contentView,作为其他元素的父控件)、两个UILable控件(textLabel、detailTextLabel)、一个UIImage控件(imageView),分别用于容器、显示内容、详情和图片。具体如同微信、QQ的消息界面,上面的微信界面图即是示例。

UITableViewCell

通过UITableViewCellStyle可以设置UITableViewCell的风格,具体如下

typedef NS_ENUM(NSInteger, UITableViewCellStyle) {
    UITableViewCellStyleDefault,    
    //左侧显示textLabel(不显示detailTextLabel),imageView可选
    
    UITableViewCellStyleValue1,     
    //左侧显示textLabel、右侧显示detailTextLabel(默认蓝色),imageView可选(显示在最左边)
    
    UITableViewCellStyleValue2,     
    //左侧依次显示textLabel(默认蓝色)和detailTextLabel,imageView可选(显示在最左边)
    
    UITableViewCellStyleSubtitle    
    //左上方显示textLabel,左下方显示detailTextLabel(默认灰色),imageView可选(显示在最左边)
            
}; 

相关代码

//获取cell
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{   
    NSString * celStr = @"cell";
    //cell复用
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:celStr];   
    if(cell == nil)
    {
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:celStr];
    }
   
    //imageview
    UIImage *img = [UIImage imageNamed:@"12.jpg"];
    [cell.imageView setImage: img];
    [cell.imageView setHighlightedImage:img];
    
    //texLable与detailLable
    cell.textLabel.text = @"xxx";
    cell.detailTextLabel.text = @"xxx";
    
    return cell;
}

除了这四个view,cell中还有accessoryView 等其他view,如设置界面右侧的图标(iOS称之为访问器),通过UITableViewCell的accesoryType属性可以设置为系统提供的几个图标,也可以在创建cell时将一个一个UIView对象指针赋值给cell.accessoryView属性来显示自定义的图标。

typedef NS_ENUM(NSInteger, UITableViewCellAccessoryType) {
    UITableViewCellAccessoryNone,                   // 不显示任何图标
    UITableViewCellAccessoryDisclosureIndicator,    // 跳转指示图标
    UITableViewCellAccessoryDetailDisclosureButton, // 内容详情图标和跳转指示图标
    UITableViewCellAccessoryCheckmark,              // 勾选图标
    UITableViewCellAccessoryDetailButton NS_ENUM_AVAILABLE_IOS(7_0) // 内容详情图标
};

相关代码

[cell setAccessoryType:UITableViewCellAccessoryDetailDisclosureButton];

做一个示例代码如下来展示cell内部的几个subview内容:

#import "ViewController.h"

@interface ViewController ()
@property (strong,nonatomic) UITableView * tab;
@property (strong,nonatomic) NSMutableArray * arrySource;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    _tab = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStyleGrouped];

    _tab.dataSource = self;
    _tab.delegate = self;
    [self.view addSubview:_tab];
    _arrySource = [[NSMutableArray alloc] init];
    for(NSUInteger i = 0;i < 3;i++){
        NSMutableArray * cellCount = [[NSMutableArray alloc] init];
        for(NSUInteger j = 0;j < 4;j++)
        {
            NSString * str = [[NSString alloc]initWithFormat:@"%ld组,%ld行",i,j];
            [cellCount addObject:str];
        }
        [_arrySource addObject: cellCount];
    }
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [[_arrySource objectAtIndex:section] count];
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return [_arrySource count];
}

//获取cell内容
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString * celStr = @"cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:celStr];
    
    if(cell == nil)
    {
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:celStr];
    }
    UIImage *img = [UIImage imageNamed:@"12.jpg"];
    
    [cell.imageView setImage: img];
    [cell.imageView setHighlightedImage:img];
    
    
    [cell setAccessoryType:UITableViewCellAccessoryDetailDisclosureButton];
    
    NSString * cellTextLable = [[_arrySource objectAtIndex: indexPath.section] objectAtIndex:indexPath.row];
    cell.textLabel.text = cellTextLable;
    cell.detailTextLabel.text = @"嘻嘻嘻";
    return cell;
}
@end

运行结果界面如下,左侧显示textLabel、右侧显示detailTextLabel,右侧显示了内容详情图标和跳转指示图标。tabBar可以忽略下。

cell的content

1.2.UITableView协议常用方法

1.UITableViewDataSource 协议
#pragma mark 返回每组头标题名称
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
    return [NSString stringWithFormat:@"第%li组头部",section];
}

#pragma mark 返回每组尾部说明
-(NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{
    return [NSString stringWithFormat:@"第%li组尾部",section];
}

#pragma mark 设置分组头部标题内容高度
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
    if(section==0){
        return 50;
    }
    return 20;
}

#pragma mark 设置每行高度(每行高度可以不一样)
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return 100;
}

#pragma mark 设置尾部说明内容高度
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
    return 40;
}
2.UITableViewDelegate 协议
#pragma mark 选中行
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    
    NSLog(@"%li组 %li行",indexPath.section,indexPath.row);
}

#pragma mark 编辑状态下根据editingStyle(添加/删除)操作调用,编辑状态进行提交
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    [_arrySource[indexPath.section] removeObjectAtIndex:indexPath.row];
    [_tab reloadData];
}
编辑单元格

1.3UITableViewCell自定义

一般实现自定义UITableViewCell需要分为两步:第一初始化控件;第二设置数据,重新设置控件frame。原因就是自定义Cell一般无法固定高度,很多时候高度需要随着内容改变。此外由于在单元格内部是无法控制单元格高度的,因此一般会定义一个高度属性用于在UITableView的代理事件中设置每个单元格高度。

具体见【自定义Cell

1.4性能相关

1.局部刷新

当对DataSource操作后更新view,上文使用了

[_tab reloadData];

全部刷新是非常耗费性能的,尤其当我们的tableview有大量cell时候,我们一般采用局部刷新

//刷新表格
NSArray *indexPaths=@[_selectedIndexPath];
//需要局部刷新的单元格的组、行
[_tab reloadRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationLeft];
//后面的参数代表更新时的动画
2.cell复用

显示界面有限,而cell可能有非常多,复用cell非常有必要,用一个NSString的标识标识不同的cell,进行复用

NSString * celStr = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:celStr];
    
if(cell == nil)
{
    cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:celStr];
}

**-(UITableViewCell *)tableView:(UITableView )tableView cellForRowAtIndexPath:(NSIndexPath )方法调用很频繁,无论是初始化、上下滚动、刷新都会调用此方法,所有在这里执行的操作一定要注意性能;

2.UICollectionView的使用


UICollectionView与UITableView在一定程度上很相似,较大的区别是UICollectionView必须自定义cell。其常用于来实现瀑布流,使用UICollectionView需要实现下面三个协议,较之UITableView多一个布局的协议。

<UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout>

见下篇

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

推荐阅读更多精彩内容

  • 1、通过CocoaPods安装项目名称项目信息 AFNetworking网络请求组件 FMDB本地数据库组件 SD...
    阳明先生_X自主阅读 15,979评论 3 119
  • Swift1> Swift和OC的区别1.1> Swift没有地址/指针的概念1.2> 泛型1.3> 类型严谨 对...
    cosWriter阅读 11,096评论 1 32
  • 概述在iOS开发中UITableView可以说是使用最广泛的控件,我们平时使用的软件中到处都可以看到它的影子,类似...
    liudhkk阅读 9,034评论 3 38
  • 我的床是木质的,颜色为深棕色,表皮有平行线条纹,因为年份已久,闻上去并没有木质品的气味。 床腿呈外扩的罗圈形,正常...
    乘零阅读 212评论 0 0
  • 莫言与莫宇是一对亲兄妹。由于父母死的早,年仅八岁的莫言就要担负起照顾妹妹的责任。 左右邻居都知道他们家的情况,也会...
    暖玥阅读 325评论 0 0