Swift cocoa pods "Using an Unresolved Identifier"

I encountered a very often problem for me:

Use of unresolved identifier ''

So, I want to use this library in my Swift project, but it seems my project does not see the files.

when i try to use an object AnimatableImageViewi getUse of unresolved identifier 'AnimatableImageView'

+4
source share
1 answer

"Edit the build settings and add" Other linker flags "=" -ObjC ""

Otherwise use "import Gifu". this should work.

+3
source

Source: https://habr.com/ru/post/1651546/


All Articles