I\'m trying to use SDWebImage in my iPhone app. I followed the step by step tutorial to install SDWebImage into my Xcode project.
When I try to build my app i\'m ge
A much cleaner "install" of SDWebImage would be as follow:
On any .m file where you wish to use it add:
#import "UIImageView+WebCache.h"
(and any other SD component needed)
instead of what you probably did:
#import
this does not require any project header manipulation and will work as is.