UITableViewCell 无法显示detailTextLabel.text

今天同事碰到个问题就是无法显示cell 里的 detailTextLabel.text 代码如下:


UITableViewCell 无法显示detailTextLabel.text_第1张图片

这段代码运行结果:

UITableViewCell 无法显示detailTextLabel.text_第2张图片

运行后结果不显示cell 里的detailTextLabel.text ,试了好久,我把代码改为如下:

UITableViewCell 无法显示detailTextLabel.text_第3张图片

这段代码运行效果如下:

UITableViewCell 无法显示detailTextLabel.text_第4张图片

发现使用这段代码时候就无法显示detailTextLabel.text ,注意使用这段代码就必须注册cell

[tableViewregisterClass:[UITableViewCellclass]forCellReuseIdentifier:ID];

[tableViewdequeueReusableCellWithIdentifier:IDforIndexPath:indexPath];

一般自定义cell 时候可以使用上面这个方法,不用判断cell 是否为空,如果系统自带cell 可以满足使用的话,就用如下:

UITableViewCell* cell = [tableViewdequeueReusableCellWithIdentifier:ID];

总结:

1、dequeueReuseableCellWithIdentifier:与dequeueReuseableCellWithIdentifier:forIndexPath:的区别:

前者不必向tableView注册cell的Identifier,但需要判断获取的cell是否为nil;

后者则必须向table注册cell,可省略判断获取的cell是否为空,因为无可复用cell时runtime将使用注册时提供的资源去新建一个cell并返回

2、自定义cell时,记得将其他内容加到self.contentView 上,而不是直接添加到 cell 本身上

3.自定义cell时,

若使用nib,使用 registerNib: 注册,dequeue时会调用 cell 的 -(void)awakeFromNib

不使用nib,使用 registerClass: 注册, dequeue时会调用 cell 的 - (id)initWithStyle:withReuseableCellIdentifier:

4.需不需要注册?

使用dequeueReuseableCellWithIdentifier:可不注册,但是必须对获取回来的cell进行判断是否为空,若空则手动创建新的cell;

使用dequeueReuseableCellWithIdentifier:forIndexPath:必须注册,但返回的cell可省略空值判断的步骤。




                                                                   完

你可能感兴趣的:(UITableViewCell 无法显示detailTextLabel.text)