I’ve been trying to figure this out for weeks and i still get nothing. I am using the ASIHTTPRequest and ive successfully sent the data to a server and now I need to get the response XML,parse it and save the elements to each labeled NSString so I can post it to the server. Does anyone have an idea on how to do this?
Share
From looking at the How to Use page, I think what you want to do is implement methods that can be called when the request is complete. For example, say you have a method
done:that you want to be called when your request completes. You can set that method as your “finished” selector on the request:Then later, you implement the
done:method:This is all assuming you’re sending the requests asynchronously; if you’re using synchronous calls, you can just use the
responseStringproperty on the request.