Skip to content

noppefoxwolf/StackPageView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

StackPageView

Vertical page view with UIViewControllers stacked on the top of each other

Install

add StackPageView.swift your project.

How to Use

class ViewController: UIViewController,StackViewDataSource {

    @IBOutlet weak var stackPageView: StackPageView!
    
    override func viewDidLoad() {
        super.viewDidLoad()
        stackPageView.dataSource = self
        stackPageView.parentViewController = self
    }

    func stackViewNext(currentViewController: UIViewController?) -> UIViewController {
        return DummyViewController()
    }
    
    func stackViewPrev(currentViewController: UIViewController?) -> UIViewController {
        return DummyViewController()
    }

}

#Support Support with initWithFrame and Storyboard.

#LICENSE MIT

About

Stacked style tableview

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages