// // MORedPacketCustomView.h // MiMoLive // // Created by MiMo on 2025/5/16. // #import @class MORedSendConfigs; NS_ASSUME_NONNULL_BEGIN typedef NS_ENUM(NSUInteger, CustomRedPacketType){ CustomRedPacketTypeAmount, //自定义金额 CustomRedPacketTypeQuantity, // 自定义数量 }; @interface MORedPacketCustomView : UIView @property (nonatomic, assign) CustomRedPacketType type; @property (nonatomic, strong) MORedSendConfigs *config; @property (nonatomic, copy) void (^confirmBlock)(NSInteger result); @property (nonatomic, copy) void (^cancelBlock) (void); ///view展示 - (void)show; ///view隐藏 - (void)dismiss; @end NS_ASSUME_NONNULL_END