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 trialLeo Picado
9,182 PointsFor 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
42,016 Pointsjust curious, why werent you able to use SAMCache?
Leo Picado
9,182 PointsLeo Picado
9,182 PointsThe params received were of type "SAMCache", even though the Objective-C file params were different, so I couldn't even get it to build.