I am working on a profile pic.
I have added an UIImageView (say userImageView) on the storyboard with aspect mode SCALE TO FILL & added below code in my swift file
self.userImageView.layer.borderWidth = 10
self.userImageView.layer.borderColor = UIColor.white.cgColor
self.userImageView.layer.cornerRadius = self.userImageView.frame.height/2
self.userImageView.clipsToBounds = true
but when tried to add an image from camera or album, image is getting compressed.
I have also tried to resize the image but still, the image is getting compress.
What am I doing wrong?