admin
2023-04-21 0b3a4aaf99ea251bc8e27b96115288f0988fcffe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
//  ComentCell.h
//  BuWanVideo2.0
//
//  Created by weikou2016 on 16/8/11.
//  Copyright © 2016年 com.yeshi.buwansheque.ios. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@interface ComentCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *HeadImage;  //头像
 
@property (weak, nonatomic) IBOutlet UILabel *Name;  //昵称
 
@property (weak, nonatomic) IBOutlet UILabel *Time; //回复时间时间
 
@property (weak, nonatomic) IBOutlet UIButton *Replacemessage; //回复按钮
 
@property (weak, nonatomic) IBOutlet UILabel *NowComment;  //自己的评论
 
@property (weak, nonatomic) IBOutlet UILabel *WhoComment;  //谁回复的
 
@property (weak, nonatomic) IBOutlet UILabel *CommentMessage;  //回复的信息
 
@property (weak, nonatomic) IBOutlet UILabel *ComeFrom;  //来源
 
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *contentH1;//我的评论内容
 
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *contentH2;//别人回复我的内容
 
@end