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