Popularity
1.4
Growing
Activity
0.0
Stable
34
4
8

Code Quality Rank: L3
Programming language: Swift
Tags: UI    

StackPageView alternatives and similar libraries

Based on the "UI" category.
Alternatively, view StackPageView alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of StackPageView or a related project?

Add another 'UI' Library

README

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


*Note that all licence references and agreements mentioned in the StackPageView README section above are relevant to that project's source code only.