Files
featherVoice/QXLive/Mine(音域)/View/亲密关系/QXIntimateMoreListCell.h

36 lines
1.3 KiB
C
Raw Normal View History

2025-11-21 16:17:05 +08:00
//
// QXIntimateMoreListCell.h
// QXLive
//
// Created by 启星 on 2025/11/20.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
2025-11-28 22:43:06 +08:00
@protocol QXIntimateMoreListCellDelegate <NSObject>
2025-11-21 16:17:05 +08:00
2025-11-28 22:43:06 +08:00
@optional
-(void)didClickHeaderWithUserId:(NSString*)userId;
@end
2025-11-21 16:17:05 +08:00
@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;
2025-11-28 22:43:06 +08:00
@property (nonatomic,strong)NSString *userId;
2025-12-04 23:35:49 +08:00
@property (weak, nonatomic) IBOutlet UIButton *deleteBtn;
@property (weak, nonatomic) IBOutlet UIButton *topBtn;
2025-11-21 16:17:05 +08:00
@property (nonatomic,copy)void(^topSuccessBlock)(QXRelationshipListModel*model);
@property (nonatomic,copy)void(^deleteSuccessBlock)(QXRelationshipListModel*model);
2025-11-28 22:43:06 +08:00
@property (nonatomic,weak)id<QXIntimateMoreListCellDelegate>delegate;
2025-11-21 16:17:05 +08:00
+(instancetype)cellWithTableView:(UITableView *)tableView;
@end
NS_ASSUME_NONNULL_END