ios8 - SDWebImage not working on iOS 8 -
i'm developing app using ios7 sdk, when moved ios8 sdwebimage stop working properly. if try this:
[imgviewtemp setimagewithurl:urlphoto completed:^(uiimage *image, nserror *error, sdimagecachetype cachetype) { nslog(@"done"); }];
the completion block doesn't called. having same problem?
following @3d1d advice have solved problem. posted issue on github , 1 of collaborators helped me.
for experiencing same problem:
1.if (like me) you're using cocoa pods developing ios8 project suggest remove reference sdwebimage podfile
2.run pod install
3.download sdwebimage using
git clone https://github.com/rs/sdwebimage.git --recursive
4. import "uiimageview+webcache.h" category project
that made trick me.
source: https://github.com/rs/sdwebimage/issues/786
kudos bpoplauschi help.
Comments
Post a Comment