MORedPacketDetailView.h 525 B

123456789101112131415161718192021222324252627
  1. //
  2. // MORedPacketDetailView.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/6/13.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "MORedPacketDetailCell.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MORedPacketDetailView : UIView
  11. @property (nonatomic, strong) MORedEnvelopesInfo *redEnvelopInfo;
  12. @property (nonatomic, strong) MOReceivingBaseData *receiveData;
  13. //open - 红包打开动画
  14. - (void)openRedPacketDetailView;
  15. //push - 自然push
  16. - (void)pushRedPacketDetailView;
  17. - (void)dismissRedPacketDetailView;
  18. @end
  19. NS_ASSUME_NONNULL_END