Infinite Possibilities
Infinite Possibilities

Reputation: 7466

Objective-C async http request

I want to create an async http request. Where to start? Can you give me some good links to start this? I want to learn it.

Upvotes: 11

Views: 9192

Answers (3)

Ankush
Ankush

Reputation: 2555

You can use third party SDK like ASIHTTPRequest . It is very simple to use and come with some delegate methods. This is how you can use it. It is really useful as it provide a lot of features.

Upvotes: 0

kennytm
kennytm

Reputation: 523154

-[NSURLConnection initWithRequest:delegate:]

See Using NSURLConnection from Apple.

Upvotes: 11

Related Questions