123456789101112131415161718 |
- import Foundation
- public protocol ViewControllerTransitioningDelegate: class {
- func animationController(forDismissed dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning?
-
- func animationController(forPresented presented: UIViewController,
- presenting: UIViewController, source: UIViewController)
- -> UIViewControllerAnimatedTransitioning?
- }
|