I would like to make my image in UIImageView slightly smaller than it originally set for me.
I had send the contentMode to UIViewContentModeScaleAspectFill but I still want to make it slightly smaller.
self.imgCamera.layer.cornerRadius = self.imgCamera.frame.size.width / 2;
self.imgCamera.contentMode=UIViewContentModeScaleAspectFill;
self.imgCamera.clipsToBounds = YES;