views:

230

answers:

1

Was wondering if it was a good idea to intergrate ASIHTTPRequest framework for HTTP requests for REST while using three20. three20 has TTURLRequest.

+2  A: 

I do in my app because it is much more powerful than TTURLRequest for some things. In my apps, I use TTURLRequest for basic things like http GET's, but I use ASIHTTPRequest for downloading large pieces of data because they offer file resuming and downloading directly to disk.

coneybeare