Is it possible to set minimal height for cell? I use dynamic:
tableView.estimatedRowHeight = 83.0 tableView.rowHeight = UITableViewAutomaticDimension
Set a contentViews heightAnchor to your least required height .
Swift 4.2 version programatically
contentView.heightAnchor.constraint(greaterThanOrEqualToConstant: ).isActive = true