iOS dynamic image loading

When developing iOS apps you often find yourself wanting to fetch images dynamically from a server rather than having them all shipped in the app bundle. For this task I usually use the EGOImageLoader library by ENORMEGO Developers.

It handles the downloading and caching of images, and if used for instance in a UITableView it changes download priority in the fly to prioritize images in the UITableViewCells currently displayed.

It also uses the delegate pattern so you can easily add whatever adjustments you need for your particular project.