I am developing an iPhone application (ios 5) and I am trying to use ASIHTTPRequest to facilitate my async requests. I cannot get my project to build after following the instructions exactly how they are written on the project site.
It seems I cannot link to this lib correctly
Undefined symbols for architecture i386:
“_OBJC_CLASS_$_ASIFormDataRequest”, referenced from:
objc-class-ref in CreateUserViewController.o ld: symbol(s) not found for architecture i386 clang: error: linker command failed with
exit code 1 (use -v to see invocation)
This project is using ARC perhaps that’s the issue? Has anyone run into this issue?
Thanks!
Yes it is due to your project using ARC. Check out this post to exclude the library files from ARC. And it should look like something like this when you are done: