| 123456789101112131415161718192021222324252627282930 |
- //
- // MOFastGiveView.h
- // MiMoLive
- //
- // Created by MiMo on 2025/7/27.
- //
- #import <UIKit/UIKit.h>
- @class MORtmFastGive;
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^MOSendFastGiveBlock)(MORtmFastGive *fastGiveModel);
- typedef void(^MOSendGiveViewTimeoutBlock)(void);
- @interface MOFastGiveView : UIView
- @property (nonatomic, copy) MOSendFastGiveBlock sendGiveBlock;
- @property (nonatomic, copy) MOSendGiveViewTimeoutBlock timeoutBlock;
- @property (nonatomic, strong) MORtmFastGive *fastGiveModel;
- //动画时间再加上多长时间
- - (void)addCountdonwWithTime:(NSInteger)time;
- - (void)startCountdonwWithTime:(NSInteger)time;
- @end
- NS_ASSUME_NONNULL_END
|