Flipboard/FLAnimatedImage

Refresh FLAnimatedImageView

WangJian0 opened this issue · 1 comments

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

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