Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm building an application that needs to communicate with a REST service. The application is using ARC so ASIHTTPRequest is NOT an option. Also RESTKit horribly failed when we tried to use it.

How should we tackle sending the http request? (preferably asynchronicly) and 'storing' the data to be parsed by an XML parser (I don't really need help with that, just need to know how to feed it the data).

share|improve this question

2 Answers

up vote 3 down vote accepted

You don't need to use ARC everywhere, check out this question and answer, you could just disable ARC for the third party libraries.

Disable Automatic Reference Counting for Some Files

share|improve this answer

You can use AFNetworking its a very good Lib for REST communication protocol. And you can just disable ARC for AFNetworking as well.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.