Problem with table view cell click

I've developed a UITableViewController. The problem is that when I click on the row, the cell layout change without reason.

Row normal layout:

Layout after click row:

Can you please help me?

Thanks.

Can you please help me?

Can you show the code please ?

How have you defined the cell ? In storyboard ? In code ? Have you set layout constraints ?

What code do you need? Ask me and I'll send you. Yes, i have a cell defined and i'm working with storyboard.

This is the cell:

class MonitorViewCell: UITableViewCell
{
  @IBOutlet weak var ivCamera: UIImageView!
   
  override func awakeFromNib()
  {
    super.awakeFromNib()
  }

  override func setSelected(_ selected: Bool, animated: Bool)
  {
    super.setSelected(selected, animated: animated)
  }
}

Instead this is my storyboard controller structure with constraints:

Thank you.

I'm the only one in the world to have this problem?

Solved by myself! The problema was that the cell image view name was "imageView". This, in some way, create this horrible bug!!!

Problem with table view cell click
 
 
Q