PopAnimationTool.h 524 B

123456789101112131415
  1. //
  2. // PopAnimationTool.h
  3. // PopView
  4. //
  5. // Created by 李林 on 2018/3/8.
  6. // Copyright © 2018年 李林. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "PopView.h"
  10. @interface PopAnimationTool : NSObject
  11. + (CABasicAnimation *)getShowPopAnimationWithType:(PopViewDirection)popDirecton contentView:(UIView *)contentView belowView:(UIView *)belowView;
  12. + (CABasicAnimation *)getHidenPopAnimationWithType:(PopViewDirection)popDirecton contentView:(UIView *)contentView belowView:(UIView *)belowView;
  13. @end