{"id":32109900,"url":"https://github.com/hirohisa/imageloaderswift","last_synced_at":"2025-10-20T13:22:53.886Z","repository":{"id":22300870,"uuid":"25635744","full_name":"hirohisa/ImageLoaderSwift","owner":"hirohisa","description":"A lightweight and fast image loader for iOS written in Swift.","archived":false,"fork":false,"pushed_at":"2019-05-18T07:35:48.000Z","size":388,"stargazers_count":291,"open_issues_count":9,"forks_count":37,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-09-24T22:39:11.411Z","etag":null,"topics":["carthage","cocoapods","imageloader","swift","uiimageview","xcode"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hirohisa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-10-23T12:26:58.000Z","updated_at":"2025-09-16T05:58:35.000Z","dependencies_parsed_at":"2022-08-21T01:00:49.230Z","dependency_job_id":null,"html_url":"https://github.com/hirohisa/ImageLoaderSwift","commit_stats":null,"previous_names":[],"tags_count":50,"template":false,"template_full_name":null,"purl":"pkg:github/hirohisa/ImageLoaderSwift","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hirohisa%2FImageLoaderSwift","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hirohisa%2FImageLoaderSwift/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hirohisa%2FImageLoaderSwift/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hirohisa%2FImageLoaderSwift/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hirohisa","download_url":"https://codeload.github.com/hirohisa/ImageLoaderSwift/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hirohisa%2FImageLoaderSwift/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280096958,"owners_count":26271435,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-20T02:00:06.978Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["carthage","cocoapods","imageloader","swift","uiimageview","xcode"],"created_at":"2025-10-20T13:22:52.473Z","updated_at":"2025-10-20T13:22:53.881Z","avatar_url":"https://github.com/hirohisa.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"ImageLoader\n=======\n[![Build-Status](https://api.travis-ci.org/hirohisa/ImageLoaderSwift.svg?branch=master)](https://travis-ci.org/hirohisa/ImageLoaderSwift)\n[![CocoaPods](https://img.shields.io/cocoapods/v/ImageLoader.svg)](https://cocoapods.org/pods/ImageLoader)\n[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)\n[![codecov.io](https://codecov.io/github/hirohisa/ImageLoaderSwift/coverage.svg?branch=master)](https://codecov.io/github/hirohisa/ImageLoaderSwift?branch=master)\n[![license](https://img.shields.io/badge/license-MIT-000000.svg)](https://github.com/hirohisa/ImageLoaderSwift/blob/master/LICENSE)\n\nImageLoader is an instrument for asynchronous image loading written in Swift. It is a lightweight and fast image loader for iOS.\n\nFeatures\n----------\n\n- [x] Simple methods with UIImageView Category.\n- [x] Control Loader to resume, suspend and cancel with URL.\n- [x] A module for cache can be set by yourself and default cache (Disk) uses disk spaces and un-uses memory.\n- [x] Loading images is handled by ImageLoader, not UIImageView.\n- [x] After image view start loading another image, previous loading task is possible to live with caching.\n- [x] Support `NSURL`, `String` and `NSURLComponents` by `URLLiteralConvertible`\n- [ ] Optimize to use memory when image is set.\n- [x] Support image type .jpeg, .png\n- [x] Comprehensive Unit Test Coverage\n\nRequirements\n----------\n\n- iOS 8.0+\n- Xcode 7.0+ Swift 2.0\n\nImageLoader | Xcode | Swift\n----------- | ----- | -----\n0.13.+      | 9.0+  | 4.0\n0.12.+      | 8.1+  | 3.0\n0.11.+      | 8.0+  | 3.0\n0.10.0      | 8.0+  | 2.3\n0.9.x       | 7.3.1 | 2.2\n\nIf your project's target need to support iOS5.x or 6.x, use [ImageLoader](https://github.com/hirohisa/ImageLoader). It's A lightweight and fast image loader for iOS written in Objective-C.\n\nInstallation\n----------\n\n### CocoaPods\n\n```ruby\npod 'ImageLoader'\n```\n\n### Carthage\n\nTo integrate ImageLoader into your Xcode project using Carthage, specify it in your `Cartfile`:\n\n```\ngithub \"hirohisa/ImageLoaderSwift\" ~\u003e 0.6.0\n```\n\nUsage\n----------\n\n#### ImageLoader\n\n**load**\n```swift\nImageLoader.request(with: url, onCompletion: { _ in })\n```\n\n#### UIImageView\n\n```swift\nimageView.load.request(with: url)\n```\n\nor\n\n```swift\nimageView.load.request(with: url, onCompletion: { _ in })\n```\n\n\n## License\n\nImageLoader is available under the MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhirohisa%2Fimageloaderswift","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhirohisa%2Fimageloaderswift","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhirohisa%2Fimageloaderswift/lists"}