How do you download an image and turn it into a UIImage?
feedback
|
|
You should keep in mind that loading the image data with the sample code you've provided in your own answer will block the main thread until the download has completed. This is a useability no-no. The users of your app will think your app is unresponsive. If you want to download an image, prefer NSURLConnection to download it asynchronously in its own thread. Read the Apple documentation about async downloads with NSURLConnection. When your download completes, you can then instantiate your UIImage from the data object:
Where | |||||||||||
feedback
|
However, this isn't asynchronous. | ||||
|
feedback
|
|
It is true that Asynchronous loading is a must, but you can also achieve that with a background call if you just need a simple solution.
| |||
|
feedback
|
|
There is a really good example here using blocks: http://ios-blog.co.uk/iphone-development-tutorials/uiimage-from-url-%E2%80%93-simplified-using-blocks/ | |||
|
feedback
|