UITableView详解

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

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

UITableView 必用方法

@protocol UITableViewDataSource
// 这个是必须实现的两个方法
@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 *)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 ()
@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

你可能感兴趣的:(UITableView详解)