34 lines
1007 B
Objective-C
Executable File
34 lines
1007 B
Objective-C
Executable File
//
|
|
// SPTrendListCell.h
|
|
// SweetParty
|
|
//
|
|
// Created by bj_szd on 2022/6/1.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "SPTrendListModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SPTrendListCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *sexImgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *timeLab;
|
|
@property (weak, nonatomic) IBOutlet UIButton *focusBtn;
|
|
@property (weak, nonatomic) IBOutlet UILabel *contentLab;
|
|
@property (weak, nonatomic) IBOutlet UIView *imgsBgView;
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *imgsBgViewHeightCon;
|
|
@property (weak, nonatomic) IBOutlet UIButton *commentBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *zanBtn;
|
|
@property (weak, nonatomic) IBOutlet UILabel *distanceLab;
|
|
|
|
@property (nonatomic, copy) void(^onDeleteBlock)(void);
|
|
|
|
@property (nonatomic, strong) SPTrendListModel *model;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|