Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMathieu Robert
2,329 PointsDownloading from the web with NSData
Hey everyone, Just a quick question : to display any sources (image, text,...) from the web do I always need to use NSData to store it first and then display it? No quicker/other ways to do it? Cheers
2 Answers
Stone Preston
42,016 Pointsmost of the time yes. Thats the way most APIs will work. It would take too long and be to cumbersome to download the actual image file itself, so you just download the data for that file from their end and piece it together on your end (using methods such as imageWithData)
Mathieu Robert
2,329 PointsGreat, thanks for the prompt reply mate :)