PresentSlideSegue.swift 423 B

12345678910111213
  1. //
  2. // Created by Tom Baranes on 08/05/16.
  3. // Copyright © 2016 IBAnimatable. All rights reserved.
  4. //
  5. import UIKit
  6. open class PresentSlideSegue: UIStoryboardSegue {
  7. open override func perform() {
  8. destination.transitioningDelegate = TransitionPresenterManager.shared.retrievePresenter(transitionAnimationType: .slide(to: .left, isFade: false))
  9. source.present(destination, animated: true, completion: nil)
  10. }
  11. }