| 1234567891011121314151617181920212223 |
- //
- // CommentItemCell.h
- // AICity
- //
- // Created by 张国栋 on 2025/10/21.
- // Copyright © 2025 wei.z. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CommentItemCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *labelT;
- @property (weak, nonatomic) IBOutlet UILabel *labelC;
- @property (weak, nonatomic) IBOutlet UILabel *labelTandD;
- @property (weak, nonatomic) IBOutlet UILabel *labelL;
- @property (weak, nonatomic) IBOutlet UIImageView *imgL;
- @property (copy, nonatomic) void (^likeClicked)(void);
- @property (copy, nonatomic) void (^huifuClicked)(void);
- @end
- NS_ASSUME_NONNULL_END
|