Khalil Ghaus
Khalil Ghaus

Reputation: 251

How to add SDWebImagePrefetcher in swift

Need help urgently.Want to add the SDWebImagePrefetcher methods in swift but it is not accessible don't know why??Other PODS file of SDWebImage are accessible not this one.Any one ???

Upvotes: 0

Views: 533

Answers (1)

Siu Chung Chan
Siu Chung Chan

Reputation: 1686

instead of doing this in Bridging-Header

#import <SDWebImage/UIImageView+WebCache.h>

do this

@import SDWebImage;

Upvotes: 1

Related Questions