| 1234567891011121314151617181920212223242526272829303132 |
- //
- // MORedPacketCustomView.h
- // MiMoLive
- //
- // Created by MiMo on 2025/5/16.
- //
- #import <UIKit/UIKit.h>
- @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
|