YOUPAILZCommonGiftVC.h 1007 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // YOUPAILZCommonGiftVC.h
  3. // VQU
  4. //
  5. // Created by 肖浩然的mac on 2021/8/20.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import "ZCBaseVC.h"
  9. #import "JXCategoryListContainerView.h"
  10. #import "YOUPAILCGiftModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. typedef void(^JumToWalletBlock) (void);
  13. @protocol DidGiftSenderDelegate <NSObject>
  14. -(void)youpaifDidSenderGiftWith:(YOUPAILCGiftModel*)model Count:(NSInteger)count CategoryID:(NSString*)categoryid;
  15. @end
  16. @interface YOUPAILZCommonGiftVC : ZCBaseVC<JXCategoryListContentViewDelegate>
  17. @property(nonatomic,assign)NSInteger youpaipcountDown; // 几秒之后没有赠送礼物就会隐藏
  18. /* id */
  19. @property (copy, nonatomic) NSString *ID;
  20. @property (weak, nonatomic) id<DidGiftSenderDelegate> delegate;
  21. @property (nonatomic,assign) BOOL youpaipisAnchor; // 是不是女神
  22. /* 是否显示悄悄送礼 */
  23. @property (assign, nonatomic) NSInteger send_gift_hide;
  24. @property(nonatomic,copy)JumToWalletBlock youpaipjumToWalletBlock;
  25. @end
  26. NS_ASSUME_NONNULL_END