PresentFadeSegue.swift 410 B

12345678910111213
  1. //
  2. // Created by Jake Lin on 2/28/16.
  3. // Copyright © 2016 IBAnimatable. All rights reserved.
  4. //
  5. import UIKit
  6. open class PresentFadeSegue: UIStoryboardSegue {
  7. open override func perform() {
  8. destination.transitioningDelegate = TransitionPresenterManager.shared.retrievePresenter(transitionAnimationType: .fade(direction: .cross))
  9. source.present(destination, animated: true, completion: nil)
  10. }
  11. }