IOS开发之——UITableView(20)

本文详细介绍了如何使用UITableView实现分组布局,包括设置分组数量、每组单元格数量及数据填充,同时展示了如何设置header和footer标题,通过具体代码示例帮助读者快速掌握UITableView分组布局的实现。
摘要由CSDN通过智能技术生成

一 概述

本文使用UITableView实现分组布局,其中涉及到的知识点:

  • numberOfSectionsInTableView:必须实现的方法,设置有多少分组(section)
  • numberOfRowsInSection:必须实现的方法,设置每个分组有多少cell
  • cellForRowAtIndexPath:可选的方法,设置每个cell的数据
  • titleForHeaderInSection:可选的方法,设置header标题
  • titleForFooterInSection:可选的方法,设置footer标题

二 效果图

三 代码

3.1 OC模式下(ViewController.m)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#import "ViewController.h"
@interface ViewController ()<UITableViewDataSource>
@property (weak, nonatomic) IBOutlet UITableView *tableView;
@end

@implementation ViewController

#pragma tableView方法
//设置有多少section
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 2;
}
//每个section有多少cell
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if(section==0)
    {
        return 20;
    }else{
        return  20;
    }
}
// 告诉表格控件,每个cell的数据
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
    cell.textLabel.text=[NSString stringWithFormat:@"单元格%02ldsection-第%04ldrow",indexPath.section,(long)indexPath.row];
    
    return cell;
}
//设置header标题文字
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    return [NSString stringWithFormat:@"header---%02ld",section];
}
//设置footer标题文字
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
{
    return [NSString stringWithFormat:@"footer--%02ld",section];
}
@end

3.2 设置DataSource

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值