Flipboard / FLAnimatedImage

Performant animated GIF engine for iOS
MIT License
7.94k stars 1.22k forks source link

Refresh FLAnimatedImageView #232

Open WangJian0 opened 5 years ago

WangJian0 commented 5 years ago

On iOS 13 system, refresh FLAnimatedImageView a same gif,it will flash.But iOS 12 system not flash.

monolithic-adam commented 4 years ago

Not sure if it will help you or not but we were having the same flashing problem with this code

imageView.animatedImage = animatedImage
self.addSubview(imageView)

but when we changed it to this it stopped flashing

self.addSubview(imageView)
imageView.animatedImage = animatedImage