// // QXAddDirectCell.h // IsLandVoice // // Created by 启星 on 2025/3/6. // #import #import "QXSearchModel.h" #import "QXRoomListModel.h" #import "QXDirectDelegate.h" NS_ASSUME_NONNULL_BEGIN @interface QXAddDirectCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *IDLabel; @property (weak, nonatomic) IBOutlet UILabel *nameLabel; @property (weak, nonatomic) IBOutlet UIImageView *headerImageView; @property (weak, nonatomic) IBOutlet UIButton *addBtn; @property (weak, nonatomic) IBOutlet UIImageView *sexImageView; @property (weak, nonatomic) IBOutlet UIImageView *levelImageView; @property (nonatomic,strong)QXSearchModel *user; @property (nonatomic,strong)QXRoomListModel *roomModel; @property (nonatomic,weak)iddelegate; +(instancetype)cellWithTableView:(UITableView *)tableView; @end NS_ASSUME_NONNULL_END