Code Monkey home page Code Monkey logo

swiftyimagecache's Introduction

SwiftyImageCache

Codacy Badge

Helper framework to cache image with url in Swift iOS.

Requirements

  • iOS 8.0+
  • Xcode 8+
  • Swift 3

Installation

CocoaPods

To integrate PhotoCollectionView into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

pod 'SwiftyImageCache', '~> 1.2.2'

Then, run the following command:

$ pod install

Manually

  • Drag and drop Sources folder into your project.

Usage

Convenient UIImageView

Set url to imageview.

imageView.setUrl(url)

Design for UITableView/UICollectionView asynchronous image. Only need setUrl from any UIImageView in UITableViewCell/UICollectionViewCell.

ImageCache

Use ImageCache object to cache your image from URL

	let cache = ImageCache()
	cache.loadImage(atUrl: url, completion: { (urlString, image) in
	})

or use default cache

	ImageCache.default.loadImage(atUrl: url, completion: { (urlString, image) in
	})

CacheType

You can config cacheType

	ImageCache.default.cacheType = .disk // (default mode, recommendation)
	ImageCache.default.cacheType = .ram

TODO

Todo

License

MIT

swiftyimagecache's People

Contributors

codacy-badger avatar noblakit01 avatar scr1pting avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

swiftyimagecache's Issues

Adding Cleanup function

Thank you for maintaining this framework.
In my opinion a cleanup function would greatly benefit this library. Otherwise cache keeps on growing which is not wanted.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.