31 lines
798 B
C
31 lines
798 B
C
|
|
//
|
||
|
|
// QXAppstoreHomeView.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/8/4.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "QXRoomListModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXAppstoreHomeView : UIView
|
||
|
|
//@property (nonatomic,strong)NSArray *dataArray;
|
||
|
|
@property (nonatomic,strong)NSArray *bannerArray;
|
||
|
|
@end
|
||
|
|
|
||
|
|
|
||
|
|
@interface QXAppstoreRoomView : UIView
|
||
|
|
@property (nonatomic,strong)UIImageView *tagImageView;
|
||
|
|
@property (nonatomic,strong)UIImageView *roomCoverImageView;
|
||
|
|
@property (nonatomic,strong)UILabel *roomNameLabel;
|
||
|
|
@property (nonatomic,strong)UIView *displayMaskView;
|
||
|
|
@property (nonatomic,strong)UIView *hotBgView;
|
||
|
|
@property (nonatomic,strong)UIImageView *hotImageView;
|
||
|
|
@property (nonatomic,strong)UILabel *hotLabel;
|
||
|
|
|
||
|
|
@property (nonatomic,strong)QXRoomListModel *roomModel;
|
||
|
|
@end
|
||
|
|
NS_ASSUME_NONNULL_END
|