| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- //
- // ViewController.swift
- // Kingfisher-Demo
- //
- // Created by Wei Wang on 15/4/6.
- //
- // Copyright (c) 2017 Wei Wang <onevcat@gmail.com>
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- import UIKit
- import Kingfisher
- class ViewController: UICollectionViewController {
-
- override func viewDidLoad() {
- super.viewDidLoad()
- // Do any additional setup after loading the view, typically from a nib.
- title = "Kingfisher"
-
- if #available(iOS 10.0, tvOS 10.0, *) {
- collectionView?.prefetchDataSource = self
- }
- }
- override func didReceiveMemoryWarning() {
- super.didReceiveMemoryWarning()
- // Dispose of any resources that can be recreated.
- }
- @IBAction func clearCache(sender: AnyObject) {
- KingfisherManager.shared.cache.clearMemoryCache()
- KingfisherManager.shared.cache.clearDiskCache()
- }
-
- @IBAction func reload(sender: AnyObject) {
- collectionView?.reloadData()
- }
- }
- extension ViewController {
- override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
- return 10
- }
-
- override func collectionView(_ collectionView: UICollectionView, didEndDisplaying cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
- // This will cancel all unfinished downloading task when the cell disappearing.
- (cell as! CollectionViewCell).cellImageView.kf.cancelDownloadTask()
- }
-
- override func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
-
- let url = URL(string: "https://raw.githubusercontent.com/onevcat/Kingfisher/master/images/kingfisher-\(indexPath.row + 1).jpg")!
-
- _ = (cell as! CollectionViewCell).cellImageView.kf.setImage(with: url,
- placeholder: nil,
- options: [.transition(ImageTransition.fade(1))],
- progressBlock: { receivedSize, totalSize in
- print("\(indexPath.row + 1): \(receivedSize)/\(totalSize)")
- },
- completionHandler: { image, error, cacheType, imageURL in
- print("\(indexPath.row + 1): Finished")
- })
- }
-
- override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
- let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "collectionViewCell", for: indexPath) as! CollectionViewCell
-
- cell.cellImageView.kf.indicatorType = .activity
-
- return cell
- }
- }
- extension ViewController: UICollectionViewDataSourcePrefetching {
- func collectionView(_ collectionView: UICollectionView, prefetchItemsAt indexPaths: [IndexPath]) {
- let urls = indexPaths.flatMap {
- URL(string: "https://raw.githubusercontent.com/onevcat/Kingfisher/master/images/kingfisher-\($0.row + 1).jpg")
- }
-
- ImagePrefetcher(urls: urls).start()
- }
- }
|