Fix iOS 15 `AnimatedImageView.tintColor`
@@ -2,6 +2,14 @@
-----
+## [Unreleased]
+
+#### Fix
+* Fix `AnimatedImageView` not changing the `tintColor` for templated images. [#1785]
+---
## [7.0.0-beta.2 - Version 7](https://github.com/onevcat/Kingfisher/releases/tag/7.0.0-beta.2) (2021-08-02)
#### Fix
@@ -230,7 +230,7 @@ open class AnimatedImageView: UIImageView {
if let currentFrame = animator?.currentFrameImage {
layer.contents = currentFrame.cgImage
} else {
- layer.contents = image?.cgImage
+ super.display(layer)
}