如果没有帖子可用,我想显示以下默认单元格:
这次,我的单元格将显示为:
我已经在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没有以正确的大小显示。 预先感谢您的帮助!
祝大家圣诞快乐!
答案 0 :(得分:2)
图片限制
( top , centerX ) => to superView , width , height
标签约束
top => to image , ( leading , trailing , bottom ) => to superView
和.lines = 0