DLAutoSlidePageViewController
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
PageViewController is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "DLAutoSlidePageViewController"
Usage
- 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
- 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, [email protected]
License
DLAutoSlidePageViewController is available under the MIT license. See the LICENSE file for more info.