Reputation: 27123
I started faced with very often problem for me is:
Use of unresolved identifier ''
So I want to use this library in my Swift project, but seems my project does not see files.
when I try to use AnimatableImageView
object I get Use of unresolved identifier 'AnimatableImageView'
Upvotes: 5
Views: 2340
Reputation: 141
"Edit your build settings and add "Other Linker Flags" = "-ObjC""
Else, use "import Gifu". this should work.
Upvotes: 3