MOFastGiveView.h 656 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // MOFastGiveView.h
  3. // MiMoLive
  4. //
  5. // Created by MiMo on 2025/7/27.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @class MORtmFastGive;
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^MOSendFastGiveBlock)(MORtmFastGive *fastGiveModel);
  11. typedef void(^MOSendGiveViewTimeoutBlock)(void);
  12. @interface MOFastGiveView : UIView
  13. @property (nonatomic, copy) MOSendFastGiveBlock sendGiveBlock;
  14. @property (nonatomic, copy) MOSendGiveViewTimeoutBlock timeoutBlock;
  15. @property (nonatomic, strong) MORtmFastGive *fastGiveModel;
  16. //动画时间再加上多长时间
  17. - (void)addCountdonwWithTime:(NSInteger)time;
  18. - (void)startCountdonwWithTime:(NSInteger)time;
  19. @end
  20. NS_ASSUME_NONNULL_END