When i am trying to “Build Profile” everything is working fine. When i Archieve for submission, the SDWebImage is throwing error while importing UIImageView+WebCache.I m importing files as:
#import <SDWebImage/UIImageView+WebCache.h>
I have been working on this since morning but couldn’t figure out why this is not working. Also, I have checked other SO questions in this regards but nothing helped. Also, In SDWebImage project, libSDWebImage.a
is coming red. I am not able to reveal that in folder.
Any help will be appreciated.
Asked
Active
Viewed 424 times
0

iCoder4777
- 1,682
- 1
- 14
- 35
-
have you done all what has been told in this link https://github.com/rs/SDWebImage/ ? – TheTiger Jul 02 '12 at 12:43
-
Ya, Got the error, I was updating in USER HEADER SEARCHPATH instead of HEADER SEARCHPATH – iCoder4777 Jul 02 '12 at 12:59
-
but i did it before 15-16 days and it was ok .... – TheTiger Jul 02 '12 at 13:03
1 Answers
0
I solved it very easily by adding (with quotes):
"$(SRCROOT)/SDWebImage"
to the various Header Search Paths under my project's Build Settings. Thanks to Lizard in SDWebImage/UIImageView+WebCache.h file not found for his solution.