Giter Site home page Giter Site logo

spring-media / lazypages Goto Github PK

View Code? Open in Web Editor NEW
23.0 18.0 7.0 281 KB

A highly customizable library that helps you to show a scrollable list of view controllers synchronized with an index. It is written in Swift 5 for iOS 8+.

License: MIT License

Swift 100.00%
apps

lazypages's Introduction

LazyPages

CI Status License Platform swift5 Carthage compatible Version

MacDown Screenshot

LazyPages is a highly customizable library that helps you to show a scrollable list of view controllers synchronized with an index. It is written in Swift 5 for iOS 11+.

Requirements

  • iOS 11+
  • Xcode 12.2+

Features

  • Lazy load of view controllers, that allow us not to have all of them in memory when initialazing LazyPages. Furthermore, we can also initialise it with all the UIViewController instances or with closures that provides them.
  • View controllers are cached, and freed when memory is low. The number of cached view controllers can be customized.
  • View controllers can be instances of different subclasses of UIViewController.
  • Highly customizable, we can place the index and pages views as we wish, as well as desigining the index cells, with the help of Storyboard. Scroll directions could be set as wished.
  • Public API to go to a desired page.
  • Usage of UIViewController, not UIView.

Usage

An instance of LazyPages can be created from the storyboard or just programmatically.

To create it from the storyboard:

  • Add an instance of UIViewController to it. It will be the container of the Page Controller.
  • Add two container views, one for the index and one for the page controller.
  • Linked to these container views we have now two view controllers. In the desired index view controller set the class to PageIndexCollectionViewController, and in the PageController to PageController. Set their module to LazyPages.
  • Inside the Index View Controller drag and drop an instance of UICollectionView and link it through an outlet to the collectionView property of the class. This collection view will represent the index; we will be able to customize the cells inside the Storyboard.

In the code of our view controller, we have to link both view controllers together and set the proper data source. We can do that in the prepareForSegue method:

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
    guard let identifier = segue.identifier else {
      return
    }

    guard let segueEnum = Segue(rawValue: identifier) else {
      return
    }

    switch segueEnum {
    case .PageController:
      guard let pageController = segue.destinationViewController as? PageController else {
        break
      }

      self.pageController = pageController
      pageController.dataSource = self
    case .PageIndex:
      guard let pageIndex = segue.destinationViewController as? PageIndexCollectionViewController else {
        break
      }

      self.pageIndex = pageIndex
      pageIndex.dataSource = self
    }
  }

If you want to implement it programmatically, you have to create and instance of UICollectionView and assign it to the property of PageIndexCollectionViewController as we explained in the storyboard case. As specified before we have to link them together in both cases:

pageController?.pageIndexController = self.pageIndex
pageIndex?.pageController = self.pageController

To populate the views, we assign the data source properties for both the index and the Page Controller. For the Page Controller we can implement the data source ourselves, or use the provided data source classes (PageControllerArrayDataSource and PageControllerClosureDataSource) that respectively require an array of UIViewController or closures. We can easily define a visual state for selection in the index view by overriding the selected property in the UICollectionViewCell subclass that we provide in the PageIndexCollectionViewController data source:

override var isSelected: Bool {
    didSet {
      if isSelected {
        backgroundColor = UIColor.gray
        indexLabel.textColor = UIColor.white
      } else {
        backgroundColor = UIColor.white
        indexLabel.textColor = UIColor.black
      }
    }
  }

If you want to customize the amount of view controllers you cache, customize the cachingNeighborsCount property of PageController according to your needs.

Installation

Swift Package Manager

Add LazyPages to your project through the Xcode or add the following line to your package dependencies:

.package("https://github.com/spring-media/LazyPages", from: "1.0.0")

License

LazyPages is available under the MIT license.

Authors

LazyPages was made in-house by Spring-Media

Contributors

César Vargas Casaseca, [email protected], @toupper on Github, @VargasCasaseca on Twitter

Vittorio Monaco, @vittoriom on Github, @Vittorio_Monaco on Twitter

lazypages's People

Contributors

toupper avatar vittoriom avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

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.