I have an issue with UIImageView in UITabelViewCell.
here is my UIImageView in the interface builder and it's constraints

When i set the mode "scale to fill" i got this result (which match the constraints and my expectations)
but I don't want that mode!!
What I want is "Aspect Fill", but sitting this mode give me this result

How Can I handle this issue ?
Using aspect fill keeps the proportions but may result in the image being drawn outside the bounds of the view. You need to clip the subviews on the image view (you can see this option in the interface builder screenshots above) and then the excess parts of the image will not be drawn.
If you want to keep proportions and also see the entire image, then you need Aspect Fit, but this will result in blank areas to the sides of the image if it doesn't match the aspect ratio of the view.