iphoneasihttprequest

issue in including ASIHTTPRequest into iphone project


I have an app in which I have to use ASIHTTPRequest in order to receive some JSON data from server side. For this I have done the following:

included this classes into my project

alt text

and this

alt text

and also this

alt text

I also included the following frameworks:

alt text

and I get 64 errors looking like this:

alt text

I want to use only this #import "ASIHTTPRequest.h" but I don't know what classes to import.Please someone tell me what should I include more in order for this to work.Thank you.


Solution

  • Include to your project

      Reachability.h 
    
      Reachability.m
    

    Add (Project->Edit Project Settings->Build) and find the "Search Paths". In "Header Search Paths" add the following path:

    /usr/include/libxml2
    

    Happy Coding :-)