|
//
// ViewControllerTransitioningDelegate.swift
// PaiaiUIKit
//
// Created by ffib on 2019/1/28.
// Copyright © 2019 yb. All rights reserved.
//
import Foundation
public protocol ViewControllerTransitioningDelegate: class {
func animationController(forDismissed dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning?
func animationController(forPresented presented: UIViewController,
presenting: UIViewController, source: UIViewController)
-> UIViewControllerAnimatedTransitioning?
}
|