説明なし

ViewControllerTransitioningDelegate.swift 551B

123456789101112131415161718
  1. //
  2. // ViewControllerTransitioningDelegate.swift
  3. // PaiaiUIKit
  4. //
  5. // Created by FFIB on 2019/1/28.
  6. // Copyright © 2019 FFIB. All rights reserved.
  7. //
  8. import UIKit
  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. }