Files
fanyin-ios/QXLive/Dynamic(语圈)/View/详情/QXDynamicCommentCell.h
2025-08-12 14:27:12 +08:00

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