The Wayback Machine - http://web.archive.org/web/20201213200259/https://github.com/DeluxeAlonso/DLAutoSlidePageViewController
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

DLAutoSlidePageViewController

Version License Platform Swift 5

Demo

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

DLAutoSlidePageViewController requires iOS 10.0 and Swift 4.0 or above.

Installation

CocoaPods

PageViewController is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "DLAutoSlidePageViewController"

Swift Package Manager

To integrate using Swift Package Manager, add the following as a dependency to your Package.swift:

.package(url: "https://github.com/DeluxeAlonso/DLAutoSlidePageViewController.git", .upToNextMajor(from: "1.0.2"))

Usage

  1. Create an instance of a DLAutoSlidePageViewController and provide it with an array of View controllers.
let firstVC = storyboard?.instantiateViewController(withIdentifier: 'FirstVC')
let secondVC = storyboard?.instantiateViewController(withIdentifier: 'SecondVC')
let pages = [firstVC, secondVC]

let pageViewController = DLAutoSlidePageViewController(pages: pages,
                                                       timeInterval: 3.0,
                                                       transitionStyle: .scroll,
                                                       interPageSpacing: 0.0)
                                                       
addChildViewController(pageViewController)
containerView.addSubview(pageViewController.view)
pageViewController.view.frame = containerView.bounds
  1. You can also access the UIPageControl through the pageControl property.
pageViewController.pageControl.currentPageIndicatorTintColor = UIColor.lightGray
pageViewController.pageControl.pageIndicatorTintColor = UIColor.gray
pageViewController.pageControl.backgroundColor = UIColor.clear

Author

Alonso Alvarez, alonso.alvarez.dev@gmail.com

License

DLAutoSlidePageViewController is available under the MIT license. See the LICENSE file for more info.

You can’t perform that action at this time.