21 lines
556 B
Objective-C
21 lines
556 B
Objective-C
//
|
|
// QXIntimateUserCell.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/11/20.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXRoomFriendRelationModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXIntimateUserCell : UICollectionViewCell
|
|
@property (weak, nonatomic) IBOutlet UILabel *timeLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
|
|
@property (weak, nonatomic) IBOutlet QXSeatHeaderView *headerView;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *sexImageView;
|
|
@property (nonatomic,strong)QXRelationshipListModel *model;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|