// // MHTopicCommentCell.h // MHDevelopExample // // Created by CoderMikeHe on 17/2/9. // Copyright © 2017年 CoderMikeHe. All rights reserved. // #import @class MHCommentFrame,MHTopicCommentCell; @protocol MHTopicCommentCellDelegate @optional /** 点击评论cell的昵称 */ - (void) topicCommentCell:(MHTopicCommentCell *)topicCommentCell didClickedUser:(NSString *)userId; @end @interface MHTopicCommentCell : UITableViewCell /** 文本内容 */ @property (nonatomic , weak) YYLabel *contentLabel; + (instancetype)cellWithTableView:(UITableView *)tableView; /** 评论Frame */ @property (nonatomic , strong) MHCommentFrame *commentFrame; /** 代理 */ @property (nonatomic , weak) id delegate; @end