Is it possible to set minimal height for cell? I use dynamic:
tableView.estimatedRowHeight = 83.0 tableView.rowHeight = UITableViewAutomaticDimension
override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { return (UITableView.automaticDimension > minimumHeight) ? UITableView.automaticDimension : minimumHeight }