HMCommentView.h 768 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // HMCommentView.h
  3. // BuguLive
  4. //
  5. // Created by 范东 on 2019/1/2.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. // 评论列表
  8. #import "BGBaseView.h"
  9. #import "SmallVideoListModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. typedef void (^operateCommentSuccessBlock)(NSString *commentCount);
  12. @interface HMCommentView : BGBaseView
  13. @property (nonatomic, strong) SmallVideoListModel *model;
  14. @property (nonatomic, strong) UITableView *tableView;
  15. @property (nonatomic, strong) NSMutableArray *dataArray;
  16. /**
  17. 展示全部平评论列表
  18. @param superView 父视图
  19. */
  20. - (void)show:(UIView *)superView;
  21. /**
  22. 隐藏全部评论
  23. */
  24. - (void)hide;
  25. - (void)setOperateCommentSuccessBlock:(operateCommentSuccessBlock)operateCommentSuccessBlock;
  26. @end
  27. NS_ASSUME_NONNULL_END