When i want to compile my project in Xcode 4.3, i get several errors from the ASIHTTPRequest Class. Did anyone have the same problem?
I’m a IOS noob so plz suggest any idea you have. I have included all needed classed files and frameworks and got no coding errors.
Plz help me out..

That’s because you’re using ARC and ASIHTTPREQUEST does not support ARC, so you have to specify that.
In that menu you show on the printscreen you have to double-click each ASIHTTPREQUEST file and add the following compiler flags:
That should solve your problems.
Good luck!