0

My UICollectionView is stretching the images inside the cells.How to fit the image inside the cell?

Jas
  • 3,207
  • 2
  • 15
  • 45

2 Answers2

2

Use following for setting content mode of UIImage

imageView.contentMode = UIViewContentModeScaleAspectFit;
Ashish P.
  • 848
  • 5
  • 12
0

For center cropping of image

imageView.contentMode = UIViewContentModeCenter;

you can also try this solution to best fit your need

Image with aspect fit and center cropping

Community
  • 1
  • 1
Sourabh Sharma
  • 8,222
  • 5
  • 68
  • 78