vote up 0 vote down star
1

I am trying to work on application in which images should be loaded asynchronously.

Are there any examples related this?

I tried pokeb-asi to understand asynchronous transmission, and it works within that application fine.

But I want to know how to do it from scratch

I am facing following problems.

  • I don't know the exact way to do it?

  • what kind of files / frameworks should be added?

flag

2 Answers

vote up 1 vote down check

The ASIHTTPRequest class is a subclass of NSOperation, so it's typically used by adding the request to either an NSOperationQueue or an ASINetworkQueue. Each request is pulled off the queue, run in a background thread, and then the delegate for that request is notified via a callback method on the main thread.

You could wrap NSURLConnection in an NSOperation and achieve the same thing, however NSURLConnection has an asynchronous API which may suit your needs a bit better.

link|flag
I think i needed the example. However your answer helped me a lot. Thanks a lot. – sagar Sep 25 at 16:47
vote up 1 vote down

Plz. Go through following link.

http://allseeing-i.com/ASIHTTPRequest/Setup-instructions

link|flag

Your Answer

Get an OpenID
or

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