I am trying to use SDWebImage in swift, the identifier of the file to use is called UIImageView + WebCache.h
I added it to my header using
#import "UIImageView+WebCache.h"
Now I am trying to load this file in swift using:
var webCah = UIImageView+WebCache()
and I get an error:
Using an Unresolved WebCache Identifier
I believe that it thinks I'm trying to use uiimageview when I just try to use this objective-c class
How to name this class?
source
share