Communication Problem Using ASIHTTPRequest

I am developing an application for iPhone (ios 5) and I am trying to use ASIHTTPRequest to facilitate my asynchronous requests. I can’t get my project for assembly after following the instructions, exactly as they are written on the project website.

I can't seem to reference this lib correctly

Undefined symbols for i386 architecture:
"_OBJC_CLASS _ $ _ ASIFormDataRequest" referenced by: objc-class-ref in CreateUserViewController.o ld: character (s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v for call call)

This project uses ARC, is it possible that the problem? Has anyone encountered this problem?

Thanks!

+4
source share
1 answer

Yes, this is related to your project using ARC. Check out this post to exclude library files from ARC. And when you're done, it should look something like this:

enter image description here

+5
source

All Articles