Possible Duplicate:
Getting Image from URL/server
Is it possible for me to download an image from website and save it permantently inside my app? I really have no idea, but it would make a nice feature for my app.
Is it possible for me to download an image from website and save it permantently inside my app? I really have no idea, but it would make a nice feature for my app. |
||||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Yes, that's possible. Download, Create and Display an Image from URL Check the below blog post,it's step by step guide with source code . |
|||
|
|
|
Get Image From URL
Save Image inside App
|
|||
|
|
|
You cannot save anything inside the app's bundle, but you can use
Not exactly permanent, but it stays there at least until the user deletes the app. |
||||
|
|
That's the main concept. Have fun ;)
|
||||
|
Since we are on IO5 now, you no longer need to write images to disk neccessarily.
|
|||
|
|
|
Old post, but I'll throw on a few examples using asynchronous requests. Up first, blocks in
Up next we have ASIHTTPRequest, a convenience wrapper for
And finally, Grand Central Dispatch.
|
||||
|
|