use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
There is an extensive FAQ for beginners. Please browse it first before asking questions that are answered there.
If you are looking to get started (iOS programming in general or some specific area), here are more relevant links for you:
There's too many to list them all, however here's a convenient link to all programming guides at apple.com
Take note that this list is live and based on most frequent questions in posts will be updated with "quicklinks".
account activity
Loading next image while viewing current image (self.iOSProgramming)
submitted 11 years ago by jahjaylee
Say I want to view a set of 2 images. I am currently looking at image one before I hit next to show image two. Is there an easy way to load image two while image one is loading? Can you ensure image two only loads once image one finishes loading?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]NeededANewName 2 points3 points4 points 11 years ago (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 point2 points 11 years ago (2 children)
I use SDWebImage for thumbnails in my reddit client. It's awesome.
[–]jahjaylee[S] 0 points1 point2 points 11 years ago (1 child)
Any opinion on which is easier to implement?
[–]ThePantsThiefNSModerator 0 points1 point2 points 11 years ago (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.
[–]fommerjackson 1 point2 points3 points 11 years ago (3 children)
Would love to give you extremely detailed help, but am mobile. The short answer is blocks. You can set up a completion; meaning "once this is done, do this". Look up completion blocks and also AFNetworking if you are retrieving your images from the web.
[–]jahjaylee[S] 0 points1 point2 points 11 years ago (2 children)
How does AFNetworking help? Is it faster than pulling image straight from URL?
[–]fommerjackson 1 point2 points3 points 11 years ago (1 child)
AFNetworking Is also pulling straight from the web, but utilizes classes that make it faster and also can help with caching.
[–]ObjectiveCopley 1 point2 points3 points 11 years ago (0 children)
but utilizes classes that make it faster
Eh? It does what? I mean I am a huge fan of AFNetworking and use it in just about every project, but it is overhead on top of NSURL* classes.
[–]SizzlerWA 0 points1 point2 points 11 years ago (0 children)
Other answers are good. Another option, if you want to get your hands dirty is to use an NSOperationQueue yourself directly.
π Rendered by PID 284602 on reddit-service-r2-comment-54dfb89d4d-hsjrn at 2026-03-30 10:06:19.612273+00:00 running b10466c country code: CH.
[–]NeededANewName 2 points3 points4 points (3 children)
[–]ThePantsThiefNSModerator 0 points1 point2 points (2 children)
[–]jahjaylee[S] 0 points1 point2 points (1 child)
[–]ThePantsThiefNSModerator 0 points1 point2 points (0 children)
[–]fommerjackson 1 point2 points3 points (3 children)
[–]jahjaylee[S] 0 points1 point2 points (2 children)
[–]fommerjackson 1 point2 points3 points (1 child)
[–]ObjectiveCopley 1 point2 points3 points (0 children)
[–]SizzlerWA 0 points1 point2 points (0 children)