//
|
// 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
|