// // BGReplyCell.h // BuguLive // // Created by fanwe2014 on 2017/3/21. // Copyright © 2017年 xfg. All rights reserved. // #import @class CommentModel; @protocol commentDeleGate //点击cell的代理事件 - (void)commentNewsWithTag:(int)tag; //点击回复的名字的点击事件 -(void)clickNameStringWithTag:(int)tag; @end @interface BGReplyCell : UITableViewCell @property (nonatomic,weak)idCDelegate; @property (nonatomic,strong)UIImageView *headImgView; @property (nonatomic,strong)UIImageView *iconImgView; @property (nonatomic,strong)UILabel *nameLabel; @property (nonatomic,strong)UILabel *replyLabel; @property (nonatomic,strong)UILabel *timeLabel; @property (nonatomic,strong)UIButton *nameBtn; @property (nonatomic,strong)UIView *lineView; @property (nonatomic,strong)UIButton *clearBtn; - (CGFloat)creatCellWithModel:(CommentModel *)model andRow:(int)row; @end