UITableView详解

UITableView
1> UITableView继承与UIScroolView并且有两种形式:一种是Plain一种是Grouped 系统默认的样式为Plain样式

 UITableViewStylePlain 和 UITableViewStyleGrouped。
  • 2> UITableView有两种的代理方式:dataSource和delegate
    • 2.1> dataSource:

UITableView 必用方法

@protocol UITableViewDataSource<NSObject>
// 这个是必须实现的两个方法
@required
// 这个tableVIew中有每一组有多少行的数据     * 如果没有分组则默认为1 组 
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;

//  返回值为UITableViewCell 在这个方法中确定每一行tableView中所显示的数据    *每一行叫做一个 Cell
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;

// 可以选择实现的方法
@optional
// 每一个tableView中有多少组数据   Default is 1 if not implemented 默认为1 
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;              // Default is 1 if not implemented

下面这些是一些常用的方法

// 
// 可以选择实现的方法
@optional
// 设置tableView  分组的头部的文字  Header的文字
- (nullable NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section;   

// 设置tableView  分组的尾部的文字  Fotter的文字
- (nullable NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section;

// Editing
//  是否可以编辑    默认为全部可编辑
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath;

// Moving/reordering

// 是否可以移动   进行重新排序
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath;

//  返回每组标题索引
- (nullable NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView __TVOS_PROHIBITED;            

@end
  • 2.1> delegate :
    delegate 常用方法
//  设置行的高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
// 组头的高度
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section;
// 组尾的高度
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section;


// 预估行的高度
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(7_0);
// 预估组头的高度
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForHeaderInSection:(NSInteger)section NS_AVAILABLE_IOS(7_0);
// 预估组尾的高度
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForFooterInSection:(NSInteger)section NS_AVAILABLE_IOS(7_0);


// 自定义组头的View
- (nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section;   
// 自定义组尾的View
- (nullable UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section;   


//  将要点击某一行的时候执行的方法
- (nullable NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath;
// 将要取消选中某一行的时候执行的方法
- (nullable NSIndexPath *)tableView:(UITableView *)tableView willDeselectRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(3_0);
// 点击某一行的时候执行的方法
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
// 取消选中某一行的时候执行的方法
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(3_0);


// 将要开始编辑 行
- (void)tableView:(UITableView *)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath __TVOS_PROHIBITED;
// 已经结束编辑 行
- (void)tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(nullable NSIndexPath *)indexPath __TVOS_PROHIBITED;
  • tableViewCell的 性能优化和缓存机制
    • UITableView 出现卡顿 、加载缓慢等 我们就要考虑一下如何去优化tableViewCell 使用cell的复用机制来决绝这个问题

    • 当下拉或者上拉 的时候 刷新tableView 第一次生成的cell会生成,当前屏幕显示的cell消失时会将cell放入缓存池之中 如果缓存池之中有可用的cell那么就不会重新生成新的cell,而是在cell的缓存池中直接拿出来用。详情请看如下代码

#import "ViewController.h"
#import "DLTableViewCell.h"
//   cellID  () 自己可以随便起名字
static NSString *DLTableViewCellID = @"DLTableViewCellID";

//  因为要用到tableView的代理方法和数据源方法所以要遵守
@interface ViewController ()<UITableViewDataSource, UITableViewDelegate>
@property(nonatomic, strong)UITableView *tableView;
@end

@implementation ViewController
/*
    1. 程序启动的时候会先调用Main.storyboard文件
    2. 创建箭头所指向的控制器  刚开始的时候什么都没有时空白的   详情看截图(1.程序入口页面)
 */
// 1.  顾名思义 : 执行完程序入口 加载完view之后  会调用这个方法
- (void)viewDidLoad {
    /*  1.  因为这个页面时继承与 UIViewController  所以在这里  首先要调用一下他的父类,
        2. 父类为你做一些初始化之类的工作,
        3. 在这里做一些界面的初始化工作   例如: UI界面的布局等 在最初始的View上添加 想要添加的东西
     */
    [super viewDidLoad];
    // 创建tableVIew  并且给他大小和 tableView的 样式
    self.tableView = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStylePlain];
    
    //   为了cell的复用我们要注册cell
    [self.tableView registerClass:[DLTableViewCell class] forCellReuseIdentifier:DLTableViewCellID];
    
    // tableView的代理方法
    self.tableView.delegate = self;
    // tableView的 数据源方法
    self.tableView.dataSource = self;
    
    //  将tableView添加到 self.view上,   添加到本控制器上的View上面
    [self.view addSubview:self.tableView];

}

// tableView的组数
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 2;
}

// tableView  每组的行数
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 10;
}

// cell的显示内容
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    // 自定义cell的:
    /*
        参数 1. Identifier: cell的复用的时候用到的 一个ID(自定义一个就可以了)
        参数 2. indexPath:  tableView所对应的组 和  所对应的行
     */
    DLTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:DLTableViewCellID forIndexPath:indexPath];
    // 设置 cell的文字   因为 text 是要接受字符串的 所以我们要把indexPath.row 转换为字符串
    cell.textLabel.text = [NSString stringWithFormat:@"%@",@(indexPath.row)];
    return cell;
}

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

推荐阅读更多精彩内容