UITableView数据视图基本使用&协议&UITableViewCell单元格使用

UITableView的用途

数据视图
用来显示大量相同格式数据的视图
例如:通讯录、好友列表、朋友圈

UITableView 基本用法

  • 头文件要遵守的协议:
    UITableViewDelegate数据视图的普通代理协议
    UITableViewDataDelegate处理数据视图的数据的代理协议
  • 要知道的方法
    alloc
    initWithFrame(位置) style(风格grouped or plain)
    .delegate
    .datasource
  • 定义一个数据视图
  • .m实现文件中创建数据视图,并添加到当前视图中
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    //创建数据视图
    //P1:数据视图的位置
    //P2:视图的风格
    //UITableViewStylePlain 普通平铺风格
    //UITableViewStyleGrouped 分组显示风格
    _tableView = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStyleGrouped];
    
    _tableView.delegate = self;
    _tableView.dataSource = self;
    [self.view addSubview:_tableView];
}
  • 实现协议中@required要求实现的方法
    -(NSInteger)tableView:(UITableView * )tableView numberOfRowsInSection:(NSInteger)section
    获取每组元素的个数(行数)
    -(UITableViewCell*)tableView:(UITableView * )tableView cellForRowAtIndexPath:(NSIndexPath * )indexPath
    给每行填充数据,即设置单元格
//获取每组元素的个数(行数)
//必须要实现的协议函数
//程序在显示数据视图时调用
//返回值 表示每组元素的个数
//P1:数据视图对象本身
//P2:哪一组需要的行数
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return 5;
}
//设置数据视图的组数
//不是必须实现的方法,默认返回值为1组
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 3;
}
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    NSString *cellStr = @"cell";
    //尝试获取可以复用的单元格,单元格足够多的时候,划出屏幕的单元格可以复用为刚滑进屏幕的单元格
    UITableViewCell *cell = [_tableView dequeueReusableCellWithIdentifier:cellStr];
    if(cell == nil){
        //创建一个单元格对象
        //P1:单元格的样式
        //P2:单元格的复用标记
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellStr];
    }
    
    NSString *str = [NSString stringWithFormat:@"%ld组%ld行",indexPath.section,indexPath.row];
    //将单元格的文字内容赋值
    cell.textLabel.text = str;
    return cell;
}

UITableView协议

  • 用到的方法
    heightForRowAtIndexPath 设置单元格的高度
    titleForHeaderInSection 设置每组头部的标题
    titleForFooterInSection 设置每组尾部的标题
    heightForHeaderInSection 设置头部高度
    heightForFooterInSection 设置尾部高度

  • UITableViewDataDelegate处理数据视图的数据的代理协议
    例子:分A-Z个组,每组5个数据显示

  • 在视图声明文件中先写一个可变数组假装一下源数据
    NSMutableArray *_arrayData;

  • .m实现文件中

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    //创建数据视图对象
    _tableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 40, 320, 536) style:UITableViewStyleGrouped];
    //设置代理对象
    _tableView.delegate = self;
    //设置数据代理对象
    _tableView.dataSource = self;
    
    _tableView.backgroundColor = [UIColor orangeColor];
    [self.view addSubview:_tableView];
    //按照数据视图组数、行数给可变数组赋值
    _arrayData = [[NSMutableArray alloc]init];
    for(int i='A';i<'Z';i++){
        NSMutableArray * arraySmall = [[NSMutableArray alloc]init];
        for(int j=0;j<5;j++){
            NSString *str = [NSString stringWithFormat:@"%c%d",i,j];
            [arraySmall addObject:str];
        }
        [_arrayData addObject:arraySmall];
    }
}
  • 实现协议方法
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return _arrayData.count;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return [_arrayData[section] count];
}
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    NSString *str = @"cell";
    UITableViewCell *cell = [_tableView dequeueReusableCellWithIdentifier:str];
    if(cell ==nil){
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:str];
    }

    cell.textLabel.text = _arrayData[indexPath.section][indexPath.row];
    return cell;
}

//设置单元格的高度
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return 100;
}
//设置每组头部标题
-(NSString*)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
    return @"lalala";
}
//设置每组尾部的标题
-(NSString*)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{
    return @"尾部";
}
//设置头部高度
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
    return 40;
}
//设置尾部高度
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
    return 60;
}

高级协议

  • 用到的方法
    autoresizingMask自动调整子视图的大小
    .tableHeaderView数据视图的头部视图的设定
    .tableFooterView数据视图的尾部视图
    reloadData 更新数据视图,更新加载数据

commitEditingStyle 可以显示编辑状态,当手指在单元格上移动时
didSelectRowAtIndexPath 选中单元格时
didDeselectRowAtIndexPath 取消选中单元格时
editingStyleForRowAtIndexPath 每个单元格左侧显示效果,默认为删除

  • UITableViewCell
    tableView dequeueReusableCellWithIdentifier 获取可以复用的单元格
    alloc initWithStyle
    (UITableViewCellStyleSubtitle 需要设置子标题时用,默认是Default)
    cell.textLabel.text 设置单元格文字
    cell.detailTextLabel.text = @"子标题"
    cell.imageView.image = image 设置默认的图片

数据视图与导航视图结合

  • 在AppDelegate.m文件初始化后执行的application方法中将导航控制器设置为根视图控制器
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
    UINavigationController* nav = [[UINavigationController alloc]initWithRootViewController:[[ViewController alloc]init]];
    self.window.rootViewController = nav;
    [self.window makeKeyAndVisible];
    
    return YES;
}
  • ViewController.h中
@interface ViewController : UIViewController
<UITableViewDelegate,
UITableViewDataSource>
{
    //数据视图
    UITableView* _tableView;
    //数据源
    NSMutableArray* _arrayData;
    //添加导航按钮
    UIBarButtonItem* _btnEdit;
    UIBarButtonItem* _btnFinish;
    UIBarButtonItem* _btnDelete;
    //设置编辑状态
    BOOL _isEdit;
}
@end
  • ViewController.m文件中
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    _tableView = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStylePlain];
    //自动调整子视图的大小
    _tableView.autoresizingMask = UIViewAutoresizingFlexibleHeight |UIViewAutoresizingFlexibleWidth;
    _tableView.delegate=self;
    _tableView.dataSource=self;
    
    //数据视图的头部视图的设定
    _tableView.tableHeaderView = nil;
    //数据视图的尾部视图
    _tableView.tableFooterView = nil;
    
    [self.view addSubview:_tableView];
    
    //初始化数据源数组
    _arrayData = [[NSMutableArray alloc]init];
    
    for(int i=1 ; i<20 ; i++){
        NSString* str = [NSString stringWithFormat:@"A %d",i];
        [_arrayData addObject:str];
    }
    
    //当数据视图的数据源发生变化时
    //更新数据视图,重新加载数据
    [_tableView reloadData];
    
    [self createBtn];
}
-(void)createBtn{
    _isEdit = NO;
    //创建功能按钮
    _btnEdit = [[UIBarButtonItem alloc]initWithTitle:@"编辑" style:UIBarButtonItemStylePlain target:self action:@selector(pressEdit)];
    _btnFinish = [[UIBarButtonItem alloc]initWithTitle:@"完成" style:UIBarButtonItemStylePlain target:self action:@selector(pressFinish)];
    _btnDelete = [[UIBarButtonItem alloc]initWithTitle:@"删除" style:UIBarButtonItemStylePlain target:self action:@selector(pressDelete)];
    
    self.navigationItem.rightBarButtonItem = _btnEdit;
}
//可以显示编辑状态,当手指在单元格上移动时
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
    //根据索引删除数据源对应的数据
    [_arrayData removeObjectAtIndex:indexPath.row];
    //数据源更新
    [_tableView reloadData];
    
}
//选中单元格时
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    NSLog(@"选中单元格 %ld, %ld",indexPath.section, indexPath.row);
}
//取消选中的时候
-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath{
     NSLog(@"取消选中单元格 %ld, %ld",indexPath.section, indexPath.row);
}
//单元格显示效果协议,默认为删除
-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
    //插入状态 UITableViewCellEditingStyleInsert;
    //空状态 UITableViewCellEditingStyleNone;
    //多选状态 UITableViewCellEditingStyleDelete|UITableViewCellEditingStyleInsert
    return UITableViewCellEditingStyleDelete;
}

-(void)pressEdit{
    _isEdit = YES;
    self.navigationItem.rightBarButtonItem = _btnFinish;
    [_tableView setEditing:YES];
    self.navigationItem.leftBarButtonItem = _btnDelete;
}
-(void)pressDelete{
    _isEdit = YES;
    self.navigationItem.rightBarButtonItem = _btnEdit;
    [_tableView setEditing:NO];
    self.navigationItem.leftBarButtonItem = nil;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return _arrayData.count;
}
//默认组数返回1
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 1;
}
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    NSString* str = @"ID";
    //尝试获取可以复用的单元格,单元格足够多的时候,划出屏幕的单元格可以复用为刚滑进屏幕的单元格
    UITableViewCell* cell = [_tableView dequeueReusableCellWithIdentifier:str];
    if(cell == nil){
        //UITableViewCellStyleDefault 设置子标题也不会显示
        //UITableViewCellStyleSubtitle
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:str];
    }
    cell.textLabel.text = [_arrayData objectAtIndex:indexPath.row];
    //设置子文字标题
    cell.detailTextLabel.text = @"子标题";
    
    NSString* imageStr = [NSString stringWithFormat:@"icon%d",indexPath.row%3+1];
    UIImage* image = [UIImage imageNamed:imageStr];
//    UIImageView* imageView = [[UIImageView alloc]initWithImage:image];
    //设置默认的图片
    cell.imageView.image = image;
    
    return cell;
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return 60;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,186评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,858评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,620评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,888评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,009评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,149评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,204评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,956评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,385评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,698评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,863评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,544评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,185评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,899评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,141评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,684评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,750评论 2 351

推荐阅读更多精彩内容