You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a number of places where we set the image property in PINAnimatedImageView, no image is appearing. We have traced this back to the following line, where you clear the contents of the UIImageView's layer contents. When this line is commented, the images appear correctly.
We subclass PINAnimatedImageView and have managed to workaround this issue by calling [self.layer setNeedsDisplay] right after setting the image in this subclass. We do it in the image setter as follows:
In a number of places where we set the
image
property inPINAnimatedImageView
, no image is appearing. We have traced this back to the following line, where you clear the contents of theUIImageView
's layer contents. When this line is commented, the images appear correctly.We subclass
PINAnimatedImageView
and have managed to workaround this issue by calling[self.layer setNeedsDisplay]
right after setting the image in this subclass. We do it in the image setter as follows:Setup:
PINRemoteImage 3.0.3
Xcode 12.2
All devices tested (both simulators and real devices)
Getting this issue addressed would be great if possible! Thanks 🙏
The text was updated successfully, but these errors were encountered: