123456789101112131415161718192021222324252627282930313233 |
- //
- // YOUPAILZCommonGiftVC.h
- // VQU
- //
- // Created by 肖浩然的mac on 2021/8/20.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import "ZCBaseVC.h"
- #import "JXCategoryListContainerView.h"
- #import "YOUPAILCGiftModel.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^JumToWalletBlock) (void);
- @protocol DidGiftSenderDelegate <NSObject>
- -(void)youpaifDidSenderGiftWith:(YOUPAILCGiftModel*)model Count:(NSInteger)count CategoryID:(NSString*)categoryid;
- @end
- @interface YOUPAILZCommonGiftVC : ZCBaseVC<JXCategoryListContentViewDelegate>
- @property(nonatomic,assign)NSInteger youpaipcountDown; // 几秒之后没有赠送礼物就会隐藏
- /* id */
- @property (copy, nonatomic) NSString *ID;
- @property (weak, nonatomic) id<DidGiftSenderDelegate> delegate;
- @property (nonatomic,assign) BOOL youpaipisAnchor; // 是不是女神
- /* 是否显示悄悄送礼 */
- @property (assign, nonatomic) NSInteger send_gift_hide;
- @property(nonatomic,copy)JumToWalletBlock youpaipjumToWalletBlock;
- @end
- NS_ASSUME_NONNULL_END
|