TableViewCell将不会完全显示

时间:2018-12-24 14:09:36

标签: swift uitableview constraints

如果没有帖子可用,我想显示以下默认单元格:

enter image description here

这次,我的单元格将显示为:

enter image description here

我已经在viewDidLoad中设置了以下代码行:

tableView.estimatedRowHeight = 150
tableView.rowHeight = UITableView.automaticDimension

在我的cellForRowAt中,设置了以下几行:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    switch self.postArray.count {

    case 0:
        let cell = tableView.dequeueReusableCell(withIdentifier: "KeineBeiträgeVorhanden")!
        return cell

    default:

    let cell = tableView.dequeueReusableCell(withIdentifier: "DiscoveryCollectionViewCell", for: indexPath) as! DiscoveryCollectionViewCell

但是我的TableViewCell没有以正确的大小显示。 预先感谢您的帮助!

祝大家圣诞快乐!

1 个答案:

答案 0 :(得分:2)

图片限制

( top , centerX ) => to superView , width , height

标签约束

top => to image , ( leading , trailing , bottom ) => to superView 

.lines = 0