1234567891011121314151617181920212223242526272829303132 |
- //
- // YBIBInteractionProfile.h
- // YBImageBrowserDemo
- //
- // Created by 波儿菜 on 2019/6/30.
- // Copyright © 2019 杨波. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YBIBInteractionProfile : NSObject
- /// 是否取消手势交互动效
- @property (nonatomic, assign) BOOL disable;
- /// 拖动的距离与最大高度的比例,达到这个比例就会出场
- @property (nonatomic, assign) CGFloat dismissScale;
- /// 拖动的速度,达到这个值就会出场
- @property (nonatomic, assign) CGFloat dismissVelocityY;
- /// 拖动动效复位时的时长
- @property (nonatomic, assign) CGFloat restoreDuration;
- /// 拖动触发手势交互动效的起始距离
- @property (nonatomic, assign) CGFloat triggerDistance;
- @end
- NS_ASSUME_NONNULL_END
|