22 lines
562 B
Objective-C
22 lines
562 B
Objective-C
//
|
|
// QXSearchUserCell.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/9/29.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXSearchUserCell : UICollectionViewCell
|
|
@property (weak, nonatomic) IBOutlet UIImageView *avatarImageView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *IdLabel;
|
|
@property (weak, nonatomic) IBOutlet UIButton *optionBtn;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *sexImageView;
|
|
@property (nonatomic,strong)QXUserHomeModel *model;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|