You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

21 lines
580 B

//
// DZMAnimatedTransitioning.h
// DZMAnimatedTransitioning
//
// Created by 邓泽淼 on 2017/12/20.
// Copyright © 2017年 邓泽淼. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "NSObject+DZM.h"
@interface DZMAnimatedTransitioning : NSObject<UIViewControllerAnimatedTransitioning>
/// 构造方法
- (instancetype _Nullable)initWithOperation:(UINavigationControllerOperation)operation;
/// 构造方法
- (instancetype _Nullable)initWithOperation:(UINavigationControllerOperation)operation duration:(float)duration;
@end