26 lines
622 B
Objective-C
26 lines
622 B
Objective-C
//
|
|
// QXSkyPraizePoolView.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/8/27.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXGiftActivityModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXSkyPraizePoolView : UIView
|
|
@property (nonatomic,strong)QXGiftModel *giftModel;
|
|
@property (nonatomic,strong)NSString *roomId;
|
|
-(void)showInView:(UIView *)view;
|
|
@end
|
|
|
|
@interface QXSkyPoolCell : UICollectionViewCell
|
|
@property (nonatomic,strong)UIImageView *giftImageView;
|
|
@property (nonatomic,strong)UILabel *nameLabel;
|
|
@property (nonatomic,strong)UIButton *giftCoin;
|
|
@property (nonatomic,strong)QXDrawGiftModel *model;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|