MHTopicCommentCell.h 776 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // MHTopicCommentCell.h
  3. // MHDevelopExample
  4. //
  5. // Created by CoderMikeHe on 17/2/9.
  6. // Copyright © 2017年 CoderMikeHe. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class MHCommentFrame,MHTopicCommentCell;
  10. @protocol MHTopicCommentCellDelegate <NSObject>
  11. @optional
  12. /** 点击评论cell的昵称 */
  13. - (void) topicCommentCell:(MHTopicCommentCell *)topicCommentCell didClickedUser:(NSString *)userId;
  14. @end
  15. @interface MHTopicCommentCell : UITableViewCell
  16. /** 文本内容 */
  17. @property (nonatomic , weak) YYLabel *contentLabel;
  18. + (instancetype)cellWithTableView:(UITableView *)tableView;
  19. /** 评论Frame */
  20. @property (nonatomic , strong) MHCommentFrame *commentFrame;
  21. /** 代理 */
  22. @property (nonatomic , weak) id <MHTopicCommentCellDelegate> delegate;
  23. @end