I want to set corner radius with content mode as aspect fit using following code:
cell.imgvAlbum.contentMode = UIViewContentModeScaleAspectFit;
cell.imgvAlbum.clipsToBounds = YES;
cell.imgvAlbum.layer.cornerRadius = 5.0f;
but i am getting output only for content mode as aspect fit. I have also tried for:
cell.imgvAlbum.layer.masksToBounds = YES;
What to do for corner radius? Please suggest me some solution. Thanks in advance.
When using UIViewContentModeScaleAspectFit the image isn't always filling the frame of the ImageView, and that is why you could not see the corner radius.
Try putting background color to the imageView and you will see that corner radius is working.
If you want to see the round corners in any case you should use other content mode such as aspectFill or scaleToFill. example:
cell.imgvAlbum.contentMode = UIViewContentModeScaleAspectFill;
Another option would be to increase the size of the image you put in the imageView or reduce the size of the imageView.
Use below method to get a Rounded corner image with the specified radius for rounded corner, apply all your above properties as
UIViewContentModeScaleAspectFit
, clip to bounds e.t.c. on image view and set the received image by calling below function on the image view.Call as