UITableview控件简单介绍☀️

  • 版权声明:本文为博主原创文章,未经博主允许不得转载。

一、基本介绍

在众多移动应⽤用中,能看到各式各样的表格数据 。

在iOS中,要实现表格数据展示,最常用的做法就是使用UITableView,UITableView继承自UIScrollView,因此支持垂直滚动,⽽且性能极佳 。

UITableview有分组和不分组两种样式,可以在storyboard或者是用代码或者是Xib设置。

二、数据展示

UITableView需要⼀一个数据源(dataSource)来显示数据
UITableView会向数据源查询一共有多少行数据以及每⼀行显示什么数据等

没有设置数据源的UITableView只是个空壳

凡是遵守UITableViewDataSource协议的OC对象,都可以是UITableView的数据源

展示数据的过程:
(1)调用数据源的下面⽅法得知⼀一共有多少组数据
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;

(2)调用数据源的下面⽅法得知每一组有多少行数据
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;

(3)调⽤数据源的下⾯⽅法得知每⼀⾏显示什么内容
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;

三、代码示例

  • (1)能基本展示的“垃圾”代码
#import "JBViewController.h"

@interface JBViewController ()<UITableViewDataSource>
@property (weak, nonatomic) IBOutlet UITableView *tableView;

@end

@implementation JBViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    // 设置tableView的数据源
    self.tableView.dataSource = self;
    
}

#pragma mark - UITableViewDataSource
/**
 *  1.告诉tableview一共有多少组
 */
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    NSLog(@"numberOfSectionsInTableView");
    return 2;
}
/**
 *  2.第section组有多少行
 */
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSLog(@"numberOfRowsInSection %d", section);
    if (0 == section) {
        // 第0组有多少行
        return 2;
    }else
    {
        // 第1组有多少行
        return 3;
    }
}
/**
 *  3.告知系统每一行显示什么内容
 */
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"cellForRowAtIndexPath %d %d", indexPath.section, indexPath.row);
//    indexPath.section; // 第几组
//    indexPath.row; // 第几行
    // 1.创建cell
    UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
    
    // 2.设置数据
    // cell.textLabel.text = @"汽车";
    // 判断是第几组的第几行
    if (0 == indexPath.section) { // 第0组
        if (0 == indexPath.row) // 第0组第0行
        {
            cell.textLabel.text = @"奥迪";
        }else if (1 == indexPath.row) // 第0组第1行
        {
            cell.textLabel.text = @"宝马";
        }
        
    }else if (1 == indexPath.section) // 第1组
    {
        if (0 == indexPath.row) { // 第0组第0行
            cell.textLabel.text = @"本田";
        }else if (1 == indexPath.row) // 第0组第1行
        {
            cell.textLabel.text = @"丰田";
        }else if (2 == indexPath.row) // 第0组第2行
        {
            cell.textLabel.text = @"马自达";
        }
    }
    
    // 3.返回要显示的控件
    return cell;
    
}
/**
 *  第section组头部显示什么标题
 *
 */
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    // return @"标题";
    if (0 == section) {
        return @"德系品牌";
    }else
    {
        return @"日韩品牌";
    }
}
/**
 *  第section组底部显示什么标题
 *
 */
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
{
    if (0 == section) {
        return @"高端大气上档次";
    }else
    {
        return @"还不错";
    }
}
@end```



![](http://upload-images.jianshu.io/upload_images/838345-6915ab01843c2c95.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)


- (2)让代码的数据独立

新建一个模型:

```objc

#import <Foundation/Foundation.h>

@interface JBCarGroup : NSObject
/**
 *  标题
 */
@property (nonatomic, copy) NSString *title;
/**
 *  描述
 */
@property (nonatomic, copy) NSString *desc;
/**
 *  当前组所有行的数据
 */
@property (nonatomic, strong) NSArray *cars;

@end```



```objc
#import "JBViewController.h"
#import "JBCarGroup.h"

@interface JBViewController ()<UITableViewDataSource>
@property (weak, nonatomic) IBOutlet UITableView *tableView;
/**
 *  保存所有组的数据(其中每一元素都是一个模型对象)
 */
@property (nonatomic, strong) NSArray *carGroups;
@end


@implementation JBViewController


#pragma mark - 懒加载
- (NSArray *)carGroups
{
    if (_carGroups == nil) {
        // 1.创建模型
        JBCarGroup *cg1 = [[JBCarGroup alloc] init];
        cg1.title = @"德系品牌";
        cg1.desc = @"高端大气上档次";
        cg1.cars = @[@"奥迪", @"宝马"];
        
        JBCarGroup *cg2 = [[JBCarGroup alloc] init];
        cg2.title = @"日韩品牌";
        cg2.desc = @"还不错";
        cg2.cars = @[@"本田", @"丰田", @"小田田"];
        
        JBCarGroup *cg3 = [[JBCarGroup alloc] init];
        cg3.title = @"欧美品牌";
        cg3.desc = @"价格昂贵";
        cg3.cars = @[@"劳斯莱斯", @"布加迪", @"小米"];
        // 2.将模型添加到数组中
        _carGroups = @[cg1, cg2, cg3];
    }
    // 3.返回数组
    return _carGroups;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    // 设置tableView的数据源
    self.tableView.dataSource = self;
    
}

#pragma mark - UITableViewDataSource
/**
 *  1.告诉tableview一共有多少组
 */
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    NSLog(@"numberOfSectionsInTableView");
    return self.carGroups.count;
}
/**
 *  2.第section组有多少行
 */
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSLog(@"numberOfRowsInSection %d", section);
    // 1.取出对应的组模型
    JBCarGroup *g = self.carGroups[section];
    // 2.返回对应组的行数
    return g.cars.count;
}
/**
 *  3.告知系统每一行显示什么内容
 */
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"cellForRowAtIndexPath %d %d", indexPath.section, indexPath.row);
//    indexPath.section; // 第几组
//    indexPath.row; // 第几行
    // 1.创建cell
    UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
    
    // 2.设置数据
    // cell.textLabel.text = @"嗨喽";
    // 2.1取出对应组的模型
    JBCarGroup *g = self.carGroups[indexPath.section];
    // 2.2取出对应行的数据
    NSString *name = g.cars[indexPath.row];
    // 2.3设置cell要显示的数据
    cell.textLabel.text = name;
    // 3.返回要显示的控件
    return cell;
    
}
/**
 *  第section组头部显示什么标题
 *
 */
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    // return @"标题";
    // 1.取出对应的组模型
   JBJCarGroup *g = self.carGroups[section];
    return g.title;
}
/**
 *  第section组底部显示什么标题
 *
 */
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
{
    // return @"标题";
    // 1.取出对应的组模型
    JBCarGroup *g = self.carGroups[section];
    return g.desc;
}
@end```

- 实现效果:


![](http://upload-images.jianshu.io/upload_images/838345-5f70f16697924eac.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)


>提示:请自行体会把数据独立出来单独处理,作为数据模型的好处。另外,把什么抽成一个模型,一定要弄清楚。

###四、补充点

> contentView下默认有3个⼦视图:

>第2个是UILabel(通过UITableViewCell的textLabel和detailTextLabel属性访问)

>第3个是UIImageView(通过UITableViewCell的imageView属性访问)

> UITableViewCell还有⼀个UITableViewCellStyle属性,⽤于决定使用contentView的哪些子视图,以及这些子视图在contentView中的位置 

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

推荐阅读更多精彩内容