From ce7ce9da1d9b36dc6efc545be49626640d4a9b9e Mon Sep 17 00:00:00 2001 From: Anuj Singh Date: Tue, 30 Apr 2019 00:45:25 +0530 Subject: [PATCH] Fix - https://github.com/Telerik-Verified-Plugins/ImagePicker/issues/143 --- src/ios/GMImagePicker/GMGridViewCell.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ios/GMImagePicker/GMGridViewCell.m b/src/ios/GMImagePicker/GMGridViewCell.m index 0e78d3a2..d7b5c0be 100755 --- a/src/ios/GMImagePicker/GMGridViewCell.m +++ b/src/ios/GMImagePicker/GMGridViewCell.m @@ -68,8 +68,8 @@ - (id)initWithFrame:(CGRect)frame _imageView.contentMode = UIViewContentModeScaleAspectFill; }*/ _imageView.clipsToBounds = YES; - _imageView.translatesAutoresizingMaskIntoConstraints = NO; - _imageView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth; + //_imageView.translatesAutoresizingMaskIntoConstraints = NO; + //_imageView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth; [self addSubview:_imageView]; @@ -214,4 +214,4 @@ -(NSString*)getDurationWithFormat:(NSTimeInterval)duration return [NSString stringWithFormat:@"%02ld:%02ld", (long)minutes, (long)seconds]; } -@end \ No newline at end of file +@end