Search code examples
cocoaasynchronousnsimage

Asynchronous images loading from the web in Cocoa


I am looking for a way to easyly load images from the web in Cocoa (for mac, not iOS)

Any pointer?

Thanks


Solution

  • NSURLConnection is the Cocoa API for the job.

    However, some people prefer ASIHTTPRequest (I'm one of them) so you should check that out too. The developers of this library have really good docs as well!