32 lines
927 B
Objective-C
32 lines
927 B
Objective-C
//
|
|
// QXHomeTopCell.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/5/7.
|
|
//
|
|
|
|
#import "GKCycleScrollViewCell.h"
|
|
#import "QXRoomListModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXHomeTopCell : GKCycleScrollViewCell
|
|
@property (nonatomic,strong)UIImageView *roomCoverImageView;
|
|
@property (nonatomic,strong)UILabel *titleLabel;
|
|
|
|
@property (nonatomic,strong)UIView *disPlayMaskView;
|
|
@property (nonatomic,strong)UIView *animateBgView;
|
|
@property (nonatomic,strong)UIImageView *animateView;
|
|
|
|
|
|
@property (nonatomic,strong)UIView *roomPeopleBgView;
|
|
//@property (nonatomic,strong)UIImageView *roomPeopleBgImageView;
|
|
@property (nonatomic,strong)UIImageView *firstHeaderImageView;
|
|
@property (nonatomic,strong)UIImageView *secondHeaderImageView;
|
|
@property (nonatomic,strong)UIImageView *thirdHeaderImageView;
|
|
@property (nonatomic,strong)UILabel *countLabel;
|
|
|
|
@property (nonatomic,strong)QXRoomListModel *roomModel;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|