28 lines
875 B
C
28 lines
875 B
C
|
|
//
|
||
|
|
// QXMineGiftWallCell.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/11/5.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXMineGiftWallCell : UICollectionViewCell
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *bgImageView;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *countLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftImageView;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *userImageView1;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *userImageView2;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *userImageView3;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *userCountLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *giftCoinBtn;
|
||
|
|
|
||
|
|
@property (nonatomic,assign)BOOL isLight;
|
||
|
|
@property (nonatomic,strong)QXUserGiftWallModel *model;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|