| 1234567891011121314151617181920 | 
							- //
 
- //  HXPhotoViewTransition.h
 
- //  HXPhotoPickerExample
 
- //
 
- //  Created by Silence on 2017/10/27.
 
- //  Copyright © 2017年 Silence. All rights reserved.
 
- //
 
- #import <UIKit/UIKit.h>
 
- typedef enum : NSUInteger {
 
-     HXPhotoViewTransitionTypePush = 0,
 
-     HXPhotoViewTransitionTypePop = 1,
 
- } HXPhotoViewTransitionType;
 
- @interface HXPhotoViewTransition : NSObject<UIViewControllerAnimatedTransitioning>
 
- + (instancetype)transitionWithType:(HXPhotoViewTransitionType)type;
 
- - (instancetype)initWithTransitionType:(HXPhotoViewTransitionType)type;
 
- @end
 
 
  |