27 lines
961 B
Objective-C
27 lines
961 B
Objective-C
//
|
|
// QXIntimateMoreListCell.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/11/20.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@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,copy)void(^topSuccessBlock)(QXRelationshipListModel*model);
|
|
@property (nonatomic,copy)void(^deleteSuccessBlock)(QXRelationshipListModel*model);
|
|
+(instancetype)cellWithTableView:(UITableView *)tableView;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|