I'm trying to use SDWebImage in swift, the file id like to use is called UIImageView+WebCache.h
i added it to my bridging header using
#import "UIImageView+WebCache.h"
Now i am trying to load that file in swift using:
var webCah = UIImageView+WebCache()
and i get an error message reading:
Use of unresolved identifier 'WebCache'
I believe it thinks i am trying to use a uiimageview, when i am just trying to use that objective-c class
How Do i Call that class properly?