Files
featherVoice/QXLive/Mine(音域)/View/亲密关系/QXIntimateMoreListCell.h
2025-11-28 22:43:06 +08:00

34 lines
1.2 KiB
Objective-C

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