YBIBInteractionProfile.h 790 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // YBIBInteractionProfile.h
  3. // YBImageBrowserDemo
  4. //
  5. // Created by 波儿菜 on 2019/6/30.
  6. // Copyright © 2019 杨波. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YBIBInteractionProfile : NSObject
  11. /// 是否取消手势交互动效
  12. @property (nonatomic, assign) BOOL disable;
  13. /// 拖动的距离与最大高度的比例,达到这个比例就会出场
  14. @property (nonatomic, assign) CGFloat dismissScale;
  15. /// 拖动的速度,达到这个值就会出场
  16. @property (nonatomic, assign) CGFloat dismissVelocityY;
  17. /// 拖动动效复位时的时长
  18. @property (nonatomic, assign) CGFloat restoreDuration;
  19. /// 拖动触发手势交互动效的起始距离
  20. @property (nonatomic, assign) CGFloat triggerDistance;
  21. @end
  22. NS_ASSUME_NONNULL_END