24 lines
656 B
Objective-C
24 lines
656 B
Objective-C
//
|
|
// QXDynamicCommentCell.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/6/4.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXDynamicCommentCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UIView *topCornerView;
|
|
@property (weak, nonatomic) IBOutlet UIView *bottomCornerView;
|
|
@property (nonatomic,strong)QXDynamicCommentListModel *model;
|
|
@property (nonatomic,copy)void(^longPressBlock)(QXDynamicCommentListModel *model);
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *commentLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *timeLabel;
|
|
+(instancetype)cellWithTableView:(UITableView *)tableView;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|