Preheat
  • October 7, 2023

Automates preheating (prefetching) of content in UITableView and UICollectionView.

Deprecated on iOS 10. This library is similar to UITableViewDataSourcePrefetching and UICollectionViewDataSourcePrefetching added in iOS 10 which I would recommend to use instead.

One way to use Preheat is to improve user experience in applications that display collections of images. Preheat allows you to detect which cells are soon going to appear on the display, and prefetch images for those cells. You can use Preheat with any image loading library, including Nuke which it was designed for.

The idea of automating preheating was inspired by Apple’s Photos framework example app.

Getting Started


Usage


Here is an example of how you might implement preheating in your application using Preheat and Nuke:

import Preheat
import Nuke

class PreheatDemoViewController: UICollectionViewController {
let preheater = Nuke.Preheater()
var controller: Preheat.Controller<UICollectionView>?

override func viewDidLoad() {
super.viewDidLoad()

controller = Preheat.Controller(view: collectionView!)
controller?.handler = { [weak self] addedIndexPaths, removedIndexPaths in
self?.preheat(added: addedIndexPaths, removed: removedIndexPaths)
}
}

func preheat(added: [IndexPath], removed: [IndexPath]) {
func requests(for indexPaths: [IndexPath]) -> [Request] {
return indexPaths.map {
var request = Request(url: photos[$0.row])
request.priority = .low
return request
}
}
preheater.startPreheating(with: requests(for: added))
preheater.stopPreheating(with: requests(for: removed))
}

override func viewDidAppear(animated: Bool) {
super.viewDidAppear(animated)

controller?.enabled = true
}

override func viewDidDisappear(animated: Bool) {
super.viewDidDisappear(animated)

// When you disable preheat controller it removes all preheating
// index paths and calls its handler
controller?.enabled = false
}
}

Requirements


  • iOS 8.0 / tvOS 9.0
  • Xcode 9
  • Swift 4

Installation


CocoaPods

To install Preheat add a dependency to your Podfile:

# source ‘https://github.com/CocoaPods/Specs.git’
# use_frameworks!
# platform :ios, “8.0”

pod “Preheat”

Carthage

To install Preheat add a dependency to your Cartfile:

github “kean/Preheat”

Import

Import installed modules in your source files

import Preheat

GitHub


View Github

#cocoapods #ios #library #swift #uicollectionview
YOU MIGHT ALSO LIKE...
MijickPopups Hero

  Popups Alerts Resizable Sheets Banners

SwiftUI Tooltip

This package provides you with an easy way to show tooltips over any SwiftUI view, since Apple does not provide ...

SimpleToast for SwiftUI

SimpleToast is a simple, lightweight, flexible and easy to use library to show toasts / popup notifications inside iOS or ...

SSToastMessage

Create Toast Views with Minimal Effort in SwiftUI Using SSToastMessage. SSToastMessage enables you to effortlessly add toast notifications, alerts, and ...

ToastUI

A simple way to show toast in SwiftUI   Getting Started • Documentation • Change Log