Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 330 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 330 Bytes

KrakenImage 🐙

KrakenImage 🐙 is a library for downloading images from the web.

Usage

Load image from url

KrakenImageBuilder()
  .url(url)
  .set(to: cell?.photoImageView)
  .load()

Cancel image loading

KrakenImageBuilder()
  .url(url)
  .set(to: cell?.photoImageView)
  .cancel()