3

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).

Spyral
  • 760
  • 1
  • 12
  • 33

2 Answers2

3

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

Community
  • 1
  • 1
Daniel
  • 23,129
  • 12
  • 109
  • 154
0

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

AAV
  • 3,785
  • 8
  • 32
  • 59