FXImageView icon indicating copy to clipboard operation
FXImageView copied to clipboard

Image disappears

Open drshane opened this issue 6 years ago • 1 comments

Image disappears when UIActivityViewController is called on screen in iOS 11. Changing it to a UIImageView does not disappear.

drshane avatar Oct 31 '17 23:10 drshane

i met with this problem a few days ago. try change this methods - (void)setProcessedImageInternal:(UIImage *)processedImage { [self willChangeValueForKey:@"processedImage"]; _processedImage = processedImage; super.image = processedImage; self.layer.contentsScale = processedImage.scale; self.layer.contents = (id)_processedImage.CGImage; [self didChangeValueForKey:@"processedImage"]; }

and

- (void)setUp { self.shadowColor = [UIColor blackColor]; _crossfadeDuration = 0.25; super.contentMode = UIViewContentModeCenter; }

kolhozz avatar Dec 12 '17 07:12 kolhozz