Skip to content

A fully customizable container view controller to display a set of ViewControllers in a horizontal scroll view. Written in Swift.

License

Notifications You must be signed in to change notification settings

mohsinalimat/DTPagerController

 
 

Repository files navigation

DTPagerController

CI Status Version License Platform

This is a control for iOS written in Swift. DTPagerController is simple to use and easy to customize.

Screenshot

Screenshot

Usage

DTPagerController is extremely easy to use. In order to display two view controllers inside a pager controller. All you have to do is this many lines of code.

let viewController1 = ViewController()
let viewController2 = ViewController()
let pagerController = DTPagerController(viewControllers: [viewController1, viewController2])

DTPagerController is also customizable in case you want to implement your own UI.

// Change the height of segmented control
pagerController.preferredSegmentedControlHeight = 60

// Change normal font of each segmented control
pagerController.font = UIFont.customFont(ofSize: 15)

// Change selected font of each segmented control
pagerController.selectedFont = UIFont.boldCustomFont(ofSize: 15)

// Change normal text color of each segmented control
pagerController.textColor = UIColor.black

// Change selected text color of each segmented control
pagerController.selectedTextColor = UIColor.red

// Change scroll indicator height
pagerController.perferredScrollIndicatorHeight = 3

Example

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

Requirements

iOS 9+

Installation

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

pod 'DTPagerController'

Author

tungvoduc, tung98.dn@gmail.com

License

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

About

A fully customizable container view controller to display a set of ViewControllers in a horizontal scroll view. Written in Swift.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 55.1%
  • Shell 38.3%
  • Ruby 3.8%
  • Objective-C 2.8%