// // QXIntimateMoreListCell.h // QXLive // // Created by 启星 on 2025/11/20. // #import NS_ASSUME_NONNULL_BEGIN @protocol QXIntimateMoreListCellDelegate @optional -(void)didClickHeaderWithUserId:(NSString*)userId; @end @interface QXIntimateMoreListCell : UITableViewCell @property (weak, nonatomic) IBOutlet QXSeatHeaderView *leftHeaderView; @property (weak, nonatomic) IBOutlet UIImageView *leftSexImageView; @property (weak, nonatomic) IBOutlet QXSeatHeaderView *rightHeaderView; @property (weak, nonatomic) IBOutlet UIImageView *rightSexImageView; @property (weak, nonatomic) IBOutlet UILabel *leftNameLabel; @property (weak, nonatomic) IBOutlet UILabel *rightNameLabel; @property (weak, nonatomic) IBOutlet UILabel *timeLabel; @property (nonatomic,strong)QXRelationshipListModel *model; @property (nonatomic,strong)NSString *userId; @property (weak, nonatomic) IBOutlet UIButton *deleteBtn; @property (weak, nonatomic) IBOutlet UIButton *topBtn; @property (nonatomic,copy)void(^topSuccessBlock)(QXRelationshipListModel*model); @property (nonatomic,copy)void(^deleteSuccessBlock)(QXRelationshipListModel*model); @property (nonatomic,weak)iddelegate; +(instancetype)cellWithTableView:(UITableView *)tableView; @end NS_ASSUME_NONNULL_END