一、关于UITableView 复用cell两种方法:
非注册
-(id)dequeueReusableCellWithIdentifier:(NSString *)identifier;
如果没有复用cell,程序可能会返回nil, 所以创建完cell后必须要做判空处理,未获取到则重新创建。这种方法可以不用注册。
//尝试获得可以复用的单元格。但不一定获得到。得不到返回nil
UITableViewCell *cell = [_tableView dequeueReusableCellWithIdentifier:@“ft”];
//如果没有获得到
if(cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"ft"];
}
1
2
3
4
5
6
7
注册
(id)dequeueReusableCellWithIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath;
获取复用的cell,如果没有复用的cell,将自动使用提供的class类创建新的cell并返回,后面不需要再进行判空。在此之前必须要注册cell。
[self.tableView registerClass:[MyTableViewCell class] forCellReuseIdentifier:@“ft”];
MyTableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@“ft” forIndexPath:indexPath];
1
2
3
4
区别:
注册的方法需要提前将要复用的 Cell 类注册,而不需要在获取 Cell 时手动判断 cell的获取 是否为nil,这是因为 dequeueReusableCellWithIdentifier:identifier forIndexPath:在内部处理了这个过程,使得最后返回的一定是可用的 Cell
具体看这篇
二、步骤
建立MyTableViewCell文件继承于UITableViewCell
// MyTableViewCell.h文件
@interface MyTableViewCell : UITableViewCell
@property UILabel *label;
@property UIButton *btn;
@end
1
2
3
4
5
6
//MyTableViewCell.m文件
#import “MyTableViewCell.h”
@implementation MyTableViewCell
(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if ([self.reuseIdentifier isEqualToString:@“ft”]) {
_label = [[UILabel alloc] init];
[self.contentView addSubview:_label];
_btn = [UIButton buttonWithType:UIButtonTypeCustom];
[self.contentView addSubview:_btn];
}
return self;
}
//布局
@end
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
在ViewController.h 中添加协议 定义数据视图对象
#import
@interface ViewController : UIViewController
<
//实现数据视图的普通协议
//数据视图的普通事件处理
UITableViewDelegate,
//实现数据视图的数据代理协议
//处理数据视图的数据代理
UITableViewDataSource
//定义数据视图对象。数据视图用来显示大量相同格式的大量信息的视图
@property UITableView *tableView;
@end
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ViewController.m文件:
#import “ViewController.h”
#import “MyTableViewCell.h”
@interface ViewController ()
@end
@implementation ViewController
(void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
self.view.backgroundColor = [UIColor whiteColor];
self.tableView = [[UITableView alloc] initWithFrame:self.view.frame style:UITableViewStyleGrouped];
[self.view addSubview:self.tableView];
//设置代理
self.tableView.delegate = self;
self.tableView.dataSource = self;
//注册 使用- (id)dequeueReusableCellWithIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath;必须注册
[self.tableView registerClass:[MyTableViewCell class] forCellReuseIdentifier:@“ft”];
}
//组数
//组内行数
//单元格高度
//设置单元格
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
MyTableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@“ft” forIndexPath:indexPath];
//MyTableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@“ft”];
//if(cell == nil) {
// cell = [[MyTableViewCell alloc] initWithStyle:UITableViewStylePlain reuseIdentifier:@“ft”];
//}
//以上为UITableView 重用cell两种方法
if(indexPath.section == 0) {
cell.label.text = @“ft”;
[cell.btn setImage:[UIImage imageNamed:@“3.jpg”] forState:UIControlStateNormal];
} else {
cell.label.text = @“ff”;
[cell.btn setImage:[UIImage imageNamed:@“5.jpg”] forState:UIControlStateNormal];
}
return cell;
}
@end
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
运行:
————————————————
版权声明:本文为CSDN博主「1Lucky」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_45836906/article/details/107455365