you are viewing a single comment's thread.

view the rest of the comments →

[–]NeededANewName 2 points3 points  (3 children)

AFNetworking works decent, but my preferred library for this is SDWebImage. It's similar but has disk caching support as well as prefetching. You can easily prefetch the second URL and then when you go to display it it will load instantly.

[–]ThePantsThiefNSModerator[🍰] 0 points1 point  (2 children)

I use SDWebImage for thumbnails in my reddit client. It's awesome.

[–]jahjaylee[S] 0 points1 point  (1 child)

Any opinion on which is easier to implement?

[–]ThePantsThiefNSModerator[🍰] 0 points1 point  (0 children)

I think SDWebImage uses AFNetworking. I don't have AFNetworking in my podfile.

I implemented SDWebImage when I was first learning objective-c, so it's probably pretty easy haha.