https://github.com/noppefoxwolf/StackPageView
Stacked style tableview
https://github.com/noppefoxwolf/StackPageView
Last synced: about 1 year ago
JSON representation
Stacked style tableview
- Host: GitHub
- URL: https://github.com/noppefoxwolf/StackPageView
- Owner: noppefoxwolf
- Created: 2015-11-11T09:56:08.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-14T07:48:04.000Z (over 10 years ago)
- Last Synced: 2024-05-02T05:46:12.268Z (about 2 years ago)
- Language: Swift
- Homepage:
- Size: 1 MB
- Stars: 34
- Watchers: 4
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# StackPageView
Vertical page view with UIViewControllers stacked on the top of each other

# Install
add StackPageView.swift your project.
# How to Use
```swift
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