No Description

ViewControllerTransitioningDelegate.swift 558B

123456789101112131415161718
  1. //
  2. // ViewControllerTransitioningDelegate.swift
  3. // PaiaiUIKit
  4. //
  5. // Created by ffib on 2019/1/28.
  6. // Copyright © 2019 yb. All rights reserved.
  7. //
  8. import Foundation
  9. public protocol ViewControllerTransitioningDelegate: class {
  10. func animationController(forDismissed dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning?
  11. func animationController(forPresented presented: UIViewController,
  12. presenting: UIViewController, source: UIViewController)
  13. -> UIViewControllerAnimatedTransitioning?
  14. }