The code below is where I set the constraints of the UITableViewCell. private func configureConstraints() { let agentIconImageViewConstraints = [ agentIconImageView.leadingAnchor.constraint(equalTo: contentView.leadingAnchor, constant: 10), agentIconImageView.topAnchor.constraint(equalTo: contentView.topAnchor,constant: 20), agentIconImageView.widthAnchor.constraint(equalToConstant: 64), agentIconImageView.heightAnchor.constraint(equalToConstant: 32) ] let flightTimeAndAirportsStackViewConstraints = [ flightTimeAndAirportsStackView.leadingAnchor.constraint(equalTo: agentIconImageView.trailingAnchor, constant: 10),…