I have an app that uses some GIF files using SwiftyGif
(a 3rd party API that adds GIF support to the class).
The problem is that the GIF size should be 30x30. I've added a 30x30 file to the project but I need the @2x
and @3x
files. As you may know, Xcode has a Images.xcassets
folder that's contains @1x
, @2x
, @3x
files and it has an algorithm the chooses the appropriate file.
I've tried to add the GIF file to this folder but it's not possible, so how can I use the @1x
, @2x
and @3x
method with a GIF file?