35 lines
1.0 KiB
C
35 lines
1.0 KiB
C
|
|
//
|
||
|
|
// QXRoomUserCharmView.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/9/8.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "QXRoomUserCharmModel.h"
|
||
|
|
#import "QXUserHomeHeaderView.h"
|
||
|
|
#import "QXRoomSeatDelegate.h"
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXRoomUserCharmView : UIView
|
||
|
|
@property (nonatomic,weak)id<QXRoomSeatDelegate>delegate;
|
||
|
|
@property (nonatomic,strong)NSString *roomId;
|
||
|
|
@property (nonatomic,strong)NSString *userId;
|
||
|
|
-(void)showInView:(UIView *)view;
|
||
|
|
-(void)hide;
|
||
|
|
@end
|
||
|
|
|
||
|
|
@interface QXRoomUserCharmCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource>
|
||
|
|
+(instancetype)cellWithTableView:(UITableView*)tableView;
|
||
|
|
@property (nonatomic,strong)UIImageView *headImageView;
|
||
|
|
@property (nonatomic,strong)UILabel *nameLabel;
|
||
|
|
@property (nonatomic,strong)UILabel *IdLabel;
|
||
|
|
@property (nonatomic,strong)UICollectionView *collectionView;
|
||
|
|
@property (nonatomic,strong)UIImageView *charmIconView;
|
||
|
|
@property (nonatomic,strong)UILabel* charmLabel;
|
||
|
|
|
||
|
|
@property (nonatomic,strong)QXRoomUserCharmModel *model;
|
||
|
|
|
||
|
|
@end
|
||
|
|
NS_ASSUME_NONNULL_END
|