UITableViewCell不需要的内容偏移量

时间:2014-11-06 14:23:13

标签: ios uitableview swift

由于某种原因,单元格内容显示在实际单元格下方。

image

可能发生什么事?这是代码:

cell!.nameLabel!.text = name
cell!.imageView!.image = decodedimage
return cell!;

1 个答案:

答案 0 :(得分:0)

如果所有细胞都具有相同的高度,您可以简单地添加

   self.tableView.rowHeight = 66  // or whatever

在tableViewController类的viewDidLoad()中。

如果单元格高度因内容而异,则应考虑覆盖tableView.heightForRowAtIndexPath()