// // QXRoomUserCharmView.h // QXLive // // Created by 启星 on 2025/9/8. // #import #import "QXRoomUserCharmModel.h" #import "QXUserHomeHeaderView.h" #import "QXRoomSeatDelegate.h" NS_ASSUME_NONNULL_BEGIN @interface QXRoomUserCharmView : UIView @property (nonatomic,weak)iddelegate; @property (nonatomic,strong)NSString *roomId; @property (nonatomic,strong)NSString *userId; -(void)showInView:(UIView *)view; -(void)hide; @end @interface QXRoomUserCharmCell : UITableViewCell +(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