Skip to content

Latest commit

 

History

History
71 lines (46 loc) · 1.95 KB

README.md

File metadata and controls

71 lines (46 loc) · 1.95 KB

DLImageLoader-iOS

Image Loader for iOS.
This project aims to provide a reusable instrument for asynchronous image loading, caching and displaying.

Screenshot

Instalation

Swift DLImageLoader
5.X _
4.X 4.2.0
2.2 1.2.0-swift

Objective-C - "DLImageLoader", "~> 2.2.0"

Cocoapods

CocoaPods is the recommended way to add DLImageLoader to your project.

  1. Add a pod entry for DLImageLoader to your Podfile pod 'DLImageLoader'
  2. Install the pod(s) by running pod install.

Usage

Simple

DLImageLoader.shared.load("image_url_here", into: "UIImageView here")

Complete

DLImageLoader.shared.load("image_url_here", into: "UIImageView here") { result in
    switch result {
    case .success(let image):

    case .failure(let error):

    }
}

Cancel loading operations

DLImageLoader.shared.cancelOperation(url: "image_url_here")
DLImageLoader.shared.cancelAllOperations()

Plans

Objective-C version will be fully moved to objc branch

Applications using DLImageLoader

Share TV | Nootri The Nutrition Manager | Plusarium | Naomuseum | Aerobia | StreetForm

License

See LICENSE for more information.