Push transition without UINavigationController.
class ViewController: UIViewController {
private var transitioner: Transitioner?
override func viewDidLoad() {
super.viewDidLoad()
transitioner = Transitioner(style: .SimplePush, viewController: self)
}
}
You can see the sample project under the Sample directory.
iOS8.0+
The MIT License