wenzhaot / InstagramPhotoPicker

Present Image Picker like Instagram
MIT License
449 stars 71 forks source link

Set ImageView contentMode as UIViewContentModeScaleAspectFit #23

Open sree127 opened 8 years ago

sree127 commented 8 years ago

Hi,

Is there a way to set the imageView contentMode to AspectFit.

The below code doesn't work.

- (void)displayImage:(UIImage *)image
{
    self.imageView = [[UIImageView alloc] initWithImage:image];
    self.imageView.clipsToBounds = NO;
    self.imageView.contentMode = UIViewContentModeScaleAspectFit;
}
red010182 commented 8 years ago

I have the same problem