28 lines
935 B
Objective-C
28 lines
935 B
Objective-C
//
|
|
// QXUserInfoRelationCell.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/7/21.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXUserModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXUserInfoRelationCell : UICollectionViewCell
|
|
@property (weak, nonatomic) IBOutlet UIImageView *bgImageView;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *userHeader1;
|
|
@property (weak, nonatomic) IBOutlet UILabel *userNameLabel1;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *userHeader2;
|
|
@property (weak, nonatomic) IBOutlet UILabel *userNameLabel2;
|
|
@property (weak, nonatomic) IBOutlet UILabel *relationNameLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *timeLabel;
|
|
@property (weak, nonatomic) IBOutlet UIButton *deleteBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *topBtn;
|
|
@property (nonatomic,strong) QXRelationshipListModel *model;
|
|
@property (nonatomic,copy)void(^topSuccessBlock)(QXRelationshipListModel*model);
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|