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 trial

iOS Build a Photo Browser iPhone App Connecting to an API using OAuth Caching Photos

Leo Picado
Leo Picado
9,182 Points

For anyone following in Swift

I wasn't able to use SAMCache so I went with the bulletproof SDWebImage module instead, all the code went down to, install the pod, add it to your bridging-header (which you already have, since you added SimpleAuth) and then replace all the code in dowloadPhotoWithUrl for:

self.imageView.sd_setImageWithURL(url)

SDWebImage handles the async download and caching of the images

1 Answer

Stone Preston
Stone Preston
42,016 Points

just curious, why werent you able to use SAMCache?

Leo Picado
Leo Picado
9,182 Points

The params received were of type "SAMCache", even though the Objective-C file params were different, so I couldn't even get it to build.