| 123456789101112131415161718192021222324252627 |
- //
- // MORedPacketDetailView.h
- // MiMoLive
- //
- // Created by SuperC on 2024/6/13.
- //
- #import <UIKit/UIKit.h>
- #import "MORedPacketDetailCell.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MORedPacketDetailView : UIView
- @property (nonatomic, strong) MORedEnvelopesInfo *redEnvelopInfo;
- @property (nonatomic, strong) MOReceivingBaseData *receiveData;
- //open - 红包打开动画
- - (void)openRedPacketDetailView;
- //push - 自然push
- - (void)pushRedPacketDetailView;
- - (void)dismissRedPacketDetailView;
- @end
- NS_ASSUME_NONNULL_END
|