HParis / CheapCell

CheapCell makes you force on view component without consider cell.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CheapCell makes you force on view component without consider cell.

Contents

Requirements

  • iOS 13.0+
  • Xcode 11.0+
  • Swift 5.0+

Communication

  • If you found a bug, open an issue.
  • If you have a feature request, open an issue.
  • If you want to contribute, submit a pull request.

Installation

Swift Package Manager

Swift Package Manager is a tool for managing the distribution of Swift code. It’s integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies.

Xcode 11+ is required to build CheapCell using Swift Package Manager.

To integrate CheapCell into your Xcode project using Swift Package Manager, add it to the dependencies value of your Package.swift:

dependencies: [
    .package(url: "https://github.com/HParis/CheapCell", .branch("main"))
]

Manually

If you prefer not to use either of the aforementioned dependency managers, you can integrate CheapCell into your project manually.


Usage

Quick Start

import CheapCell

class AView: UIView, CheapCell {

}

class BView: UIView, CheapCell {

}

class UICollectioViewExample { 

    // Register cheap cell 
    collectionView.registerCheapCell(AView.self)
    collectionView.registerCheapCell(BView.self)

    // Reuse cheep cell
    let cell = collectionView.dequeueReusableCheapCell(for: indexPath) as CollectionCell<AView>
    let cell = collectionView.dequeueReusableCheapCell(for: indexPath) as CollectionCell<BView>
    
}

class UITableViewExample {
    // Register cheap cell 
    tableView.registerCheapCell(AView.self)
    tableView.registerCheapCell(BView.self)

    // Reuse cheep cell
    let cell = tableView.dequeueReusableCheapCell(for: indexPath) as TableCell<AView>
    let cell = tableView.dequeueReusableCheapCell(for: indexPath) as TableCell<BView>
}

License

CheapCell is released under the MIT license. See LICENSE for details.

About

CheapCell makes you force on view component without consider cell.

License:MIT License


Languages

Language:Swift 100.0%