PLMScrollMenu 0.1.7

PLMScrollMenu 0.1.7

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Apr 2016
SPMSupports SPM

Maintained by kanaiman.



  • By
  • tatsuhiro kanai

PLMScrollMenu

Usage

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

Import PLMScrollMenu module.

import PLMScrollMenu

Define your view controller class with PLMScrollMenuViewController.

class YourViewController: PLMScrollMenuViewController {

Set ViewControllers.

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.

    // setup

    let vc1 = UIViewController()
    vc1.view.backgroundColor = UIColor(red: 0.4, green: 0.8, blue: 1, alpha: 1)
    vc1.title = "First"

    let vc2 = UIViewController()
    vc2.view.backgroundColor = UIColor(red: 1, green: 0.4, blue: 0.8, alpha: 1)
    vc2.title = "Second"

    let vc3 = UIViewController()
    vc3.view.backgroundColor = UIColor(red: 1, green: 0.8, blue: 0.4, alpha: 1)
    vc3.title = "Third"

    // set ViewControllers
    self.setViewControllers([vc1, vc2 , vc3], animated: false)
}

Requirements

Installation

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

pod "PLMScrollMenu"

Author

tatsuhiro kanai, [email protected]

License

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